schema([ Forms\Components\TextInput::make('uuid') ->label('UUID') ->required() ->maxLength(36), Forms\Components\TextInput::make('name') ->required() ->maxLength(191), Forms\Components\Textarea::make('description') ->columnSpanFull(), Forms\Components\TextInput::make('source') ->required() ->maxLength(191), Forms\Components\TextInput::make('target') ->required() ->maxLength(191), Forms\Components\TextInput::make('read_only') ->required() ->numeric(), Forms\Components\TextInput::make('user_mountable') ->required() ->numeric(), ]); } public static function table(Table $table): Table { return $table ->columns([ Tables\Columns\TextColumn::make('uuid') ->label('UUID') ->searchable(), Tables\Columns\TextColumn::make('name') ->searchable(), Tables\Columns\TextColumn::make('source') ->searchable(), Tables\Columns\TextColumn::make('target') ->searchable(), Tables\Columns\TextColumn::make('read_only') ->numeric() ->sortable(), Tables\Columns\TextColumn::make('user_mountable') ->numeric() ->sortable(), ]) ->filters([ // ]) ->actions([ Tables\Actions\EditAction::make(), ]) ->bulkActions([ Tables\Actions\BulkActionGroup::make([ Tables\Actions\DeleteBulkAction::make(), ]), ]); } public static function getRelations(): array { return [ // ]; } public static function getPages(): array { return [ 'index' => Pages\ListMounts::route('/'), 'create' => Pages\CreateMount::route('/create'), 'edit' => Pages\EditMount::route('/{record}/edit'), ]; } }