schema(VideoFormSchema::resourceSchema()); } public static function table(Table $table): Table { return VideoTableSchema::configure($table); } public static function getPages(): array { return [ 'index' => Pages\ListVideos::route('/'), 'create' => Pages\CreateVideo::route('/create'), 'edit' => Pages\EditVideo::route('/{record}/edit'), ]; } }