Laravel membatasi metode rute

   public function __construct()
    {
        $this->middleware('auth')->except(['index', 'show']);
    }
Funny Fox