7 lines
175 B
PHP
7 lines
175 B
PHP
<?php
|
|
|
|
Route::middleware('auth')->prefix('Searches')->name('Searches.')->group(function () {
|
|
Route::get('results/{search?}', 'SearchController@search')->name('search');
|
|
});
|
|
|