我可以像這樣使用 inertia
提供頁面:
Route::inertia('/home', 'home');
要載入包含資料庫資料的頁面,我必須這樣做:
Route::get('/terms', [LegalPageController::class, 'index']);
在控制器中:
class LegalPageController extends Controller { public function index() { $record = Terms::first(); return inertia('terms', compact('record')); } }
有什麼辦法可以縮短為:
Route::inertia('/home', 'home', [Controller::class, 'index']);
你不能這樣做
改用這個方法