schema([ Forms\Components\TextInput::make('city')->required()->columnSpan('full')->label('Город'), Forms\Components\TagsInput::make('position')->label('Должность')->placeholder('')->required(), Forms\Components\TextInput::make('salary')->integer()->label('Зарплата')->prefix('₽'), Forms\Components\RichEditor::make('conditions')->label('Условия работы'), Forms\Components\RichEditor::make('contacts')->label('Контакты')->required(), ]); } public static function table(Table $table): Table { return $table ->columns([ // ]) ->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\ListExternalVacancies::route('/'), 'create' => Pages\CreateExternalVacancy::route('/create'), 'edit' => Pages\EditExternalVacancy::route('/{record}/edit'), ]; } }