When you click on the search button, it is moved to the page laravel code example
Example 1: When you click on the search button, it is moved to the page laravel
Route::get('/profile/{Profile}', 'PlayerController@getStats');
Example 2: When you click on the search button, it is moved to the page laravel
public function searchForm() {
return view('search');
}
public function search(Request $request) {
$inputText = ...;
$profileName = ...;
return redirect('/profile/'.$profileName);
}
Example 3: When you click on the search button, it is moved to the page laravel
Route::get('/profile/{Profile}', 'PlayerController@getStats');
Route::get('/search', 'PlayerController@searchForm');
Route::post('/search', 'PlayerController@search');