Код: Выделить всё
Route::get('/whatever', function() {
return response()->json([
'message' => 'hello from whatever route'
]);
})->name('whatever');
Код: Выделить всё
Route::get('/', function () {
return redirect('whatever'); // works
return redirect()->route('whatever'); // works
return to_route('whatever') // works
});
Подробнее здесь: https://stackoverflow.com/questions/776 ... s-to-route
Мобильная версия