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

angular - DownloadURL return null in below code -

meteor - inserting data to database gives error "insert failed: Method '/texts/insert' not found" -