108 lines
3.5 KiB
PHP
108 lines
3.5 KiB
PHP
<?php
|
|
|
|
namespace App\Filament\Resources;
|
|
|
|
use App\Filament\Resources\ApplicationResource\Pages;
|
|
use App\Models\Application;
|
|
use App\Models\Career;
|
|
use Filament\Forms;
|
|
use Filament\Forms\Form;
|
|
use Filament\Resources\Resource;
|
|
use Filament\Tables;
|
|
use Filament\Tables\Table;
|
|
|
|
class ApplicationResource extends Resource
|
|
{
|
|
protected static ?string $model = Application::class;
|
|
|
|
protected static ?string $navigationGroup = 'Careers';
|
|
|
|
protected static ?string $navigationIcon = 'heroicon-o-document-text';
|
|
|
|
public static function form(Form $form): Form
|
|
{
|
|
return $form
|
|
->schema([
|
|
Forms\Components\Select::make('career_id')
|
|
->label('Career')
|
|
->options(Career::all()->pluck('title', 'id'))
|
|
->searchable()
|
|
->required(),
|
|
Forms\Components\TextInput::make('name')
|
|
->required()
|
|
->maxLength(255),
|
|
Forms\Components\DatePicker::make('birthdate')
|
|
->required(),
|
|
Forms\Components\TextInput::make('email')
|
|
->email()
|
|
->required()
|
|
->maxLength(255),
|
|
Forms\Components\TextInput::make('phone_number')
|
|
->maxLength(255),
|
|
Forms\Components\FileUpload::make('resume_file')
|
|
->required()
|
|
->disk('public')
|
|
->directory('resumes')
|
|
->enableDownload()
|
|
->enableOpen(),
|
|
Forms\Components\RichEditor::make('cover_letter')
|
|
->columnSpan('full'),
|
|
]);
|
|
}
|
|
|
|
public static function table(Table $table): Table
|
|
{
|
|
return $table
|
|
->columns([
|
|
Tables\Columns\TextColumn::make('career.title')
|
|
->searchable()
|
|
->sortable(),
|
|
Tables\Columns\TextColumn::make('name')
|
|
->searchable(),
|
|
Tables\Columns\TextColumn::make('email')
|
|
->searchable(),
|
|
Tables\Columns\TextColumn::make('phone_number')
|
|
->searchable(),
|
|
Tables\Columns\TextColumn::make('birthdate')
|
|
->date()
|
|
->sortable(),
|
|
Tables\Columns\TextColumn::make('created_at')
|
|
->dateTime()
|
|
->sortable()
|
|
->toggleable(isToggledHiddenByDefault: true),
|
|
Tables\Columns\TextColumn::make('updated_at')
|
|
->dateTime()
|
|
->sortable()
|
|
->toggleable(isToggledHiddenByDefault: true),
|
|
])
|
|
->filters([
|
|
//
|
|
])
|
|
->actions([
|
|
Tables\Actions\EditAction::make(),
|
|
Tables\Actions\DeleteAction::make(),
|
|
])
|
|
->bulkActions([
|
|
Tables\Actions\BulkActionGroup::make([
|
|
Tables\Actions\DeleteBulkAction::make(),
|
|
]),
|
|
]);
|
|
}
|
|
|
|
public static function getRelations(): array
|
|
{
|
|
return [
|
|
//
|
|
];
|
|
}
|
|
|
|
public static function getPages(): array
|
|
{
|
|
return [
|
|
'index' => Pages\ListApplications::route('/'),
|
|
'create' => Pages\CreateApplication::route('/create'),
|
|
'edit' => Pages\EditApplication::route('/{record}/edit'),
|
|
];
|
|
}
|
|
}
|