string('slug'); $table->string('title'); $table->longText('content'); } public function getKeyName() { return 'slug'; } public function getIncrementing() { return false; } public static function routes(): void { Route::get('/{page}', config('pages.routes.handler')) ->prefix(config('pages.routes.prefix')) ->name(config('pages.routes.name')); } }