user()->hasRole('super_admin'); } public static function form(Schema $schema): Schema { return MemberPointForm::configure($schema); } public static function table(Table $table): Table { return MemberPointsTable::configure($table); } public static function getRelations(): array { return [ // ]; } public static function getPages(): array { return [ 'index' => ListMemberPoints::route('/'), 'create' => CreateMemberPoint::route('/create'), 'edit' => EditMemberPoint::route('/{record}/edit'), ]; } }