Код: Выделить всё
Route::resource('/main', CallController::class);
Код: Выделить всё
Expected identifier but found ":"
216 | * @route '/{}'
217 | */
218 | export const show = (args: { : string | number } | [param: string | number ] | string | number, options?: RouteQueryOptions): RouteDefinition => ({
| ^
219 | url: show.url(args, options),
220 | method: 'get',
Код: Выделить всё
Route::get('/', function () {
return redirect('/main');
})->name('home');
Подробнее здесь: https://stackoverflow.com/questions/797 ... th-inertia
Мобильная версия