Level 56
Hi @afoysal I think your problem is in space at the end of $last_word
<a href="{{route('start' . trim($last_word))}}">
because here
Route [startRun ] not defined.
I see space at the end of route name
1 like
I have a route like below
<a href="{{route('startRun')}}">
But I would like to use Variable like below
<a href="{{route("start".$last_word)}}">
I am getting error like below
Route [startRun ] not defined.
My route in web.php file is like below
Route::get('/run','PublicController@starToRun')->name('startRun');
Hi @afoysal I think your problem is in space at the end of $last_word
<a href="{{route('start' . trim($last_word))}}">
because here
Route [startRun ] not defined.
I see space at the end of route name
Please or to participate in this conversation.