php - how to pass variable in route name in laravel? -


i have defined route

route::get('/edit-industry/{id}', 'industries@edit')->name('admin.editindustry'); 

and passing variable by

{{ route('admin.editindustry', ['id'=>1]) }} 

or

{{ route('admin.editindustry', [1]) }} 

this not working. how pass variable here?

if have 1 parameter can :

{{ route('admin.editindustry', 1) }} 

Comments

Popular posts from this blog

Is there a better way to structure post methods in Class Based Views -

Qt QGraphicsScene is not accessable from QGraphicsView (on Qt 5.6.1) -

What is happening when Matlab is starting a "parallel pool"? -