Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Laravel NotFoundHttpException

I have a problem with this one route.

Route::get('va/{$uniqueid}','AdminController@VaShow')->name('va');

and in controller:

  public function VaShow($uniqueid = '123'){
      dd($uniqueid);
    }

but i still get NotFoundHttpException when trying to visit route. (it have admin prefix but anyway i'm trying to access it directly with url and in view but still same) in view:

{{route('va',['uniqueid'=>$v->uniqueid])}}

and I checked in route:list, its there:

|        | GET|HEAD | admin/va/{$uniqueid}     | va                 | App\Http\Controllers\AdminControl
ler@VaShow               | web,admin    |

No idea what I did wrong

like image 264
Michael Avatar asked Feb 10 '17 18:02

Michael


1 Answers

The dollar sign in your route is throwing it off. The variables in the route do not need a dollar sign:

Route::get('va/{uniqueid}','AdminController@VaShow')->name('va');
like image 60
aynber Avatar answered Sep 18 '22 23:09

aynber