101 lines
3.4 KiB
PHP
101 lines
3.4 KiB
PHP
<?php
|
|
|
|
namespace App\Filament\Admin\Resources;
|
|
|
|
use App\Filament\Admin\Resources\InformationResource\Pages;
|
|
use App\Models\Information;
|
|
use Filament\Forms;
|
|
use Filament\Forms\Form;
|
|
use Filament\Resources\Resource;
|
|
use Filament\Tables;
|
|
use Filament\Tables\Table;
|
|
|
|
class InformationResource extends Resource
|
|
{
|
|
protected static ?string $model = Information::class;
|
|
|
|
protected static ?string $navigationIcon = 'heroicon-o-information-circle';
|
|
|
|
protected static ?string $navigationLabel = 'Informations';
|
|
|
|
protected static ?string $modelLabel = 'Information';
|
|
|
|
public static function form(Form $form): Form
|
|
{
|
|
return $form
|
|
->schema([
|
|
Forms\Components\TextInput::make('title')
|
|
->label('Titre')
|
|
->required()
|
|
->maxLength(255),
|
|
Forms\Components\TextInput::make('category')
|
|
->label('Catégorie')
|
|
->required()
|
|
->maxLength(255)
|
|
->default('Général'),
|
|
Forms\Components\RichEditor::make('content')
|
|
->label('Contenu')
|
|
->required()
|
|
->columnSpanFull(),
|
|
Forms\Components\FileUpload::make('image_url')
|
|
->label('Image')
|
|
->image()
|
|
->disk('public') // Ajoutez ceci pour forcer l'utilisation du disque public
|
|
->directory('informations')
|
|
->visibility('public'),
|
|
Forms\Components\Toggle::make('is_published')
|
|
->label('Publié')
|
|
->default(true)
|
|
->required(),
|
|
]);
|
|
}
|
|
|
|
public static function table(Table $table): Table
|
|
{
|
|
return $table
|
|
->columns([
|
|
Tables\Columns\TextColumn::make('title')
|
|
->label('Titre')
|
|
->searchable(),
|
|
Tables\Columns\TextColumn::make('category')
|
|
->label('Catégorie')
|
|
->badge()
|
|
->searchable(),
|
|
Tables\Columns\IconColumn::make('is_published')
|
|
->label('Publié')
|
|
->boolean(),
|
|
Tables\Columns\TextColumn::make('created_at')
|
|
->label('Créé le')
|
|
->dateTime()
|
|
->sortable()
|
|
->toggleable(isToggledHiddenByDefault: true),
|
|
])
|
|
->filters([
|
|
Tables\Filters\TernaryFilter::make('is_published')
|
|
->label('Statut de publication')
|
|
->boolean()
|
|
->trueLabel('Publiés')
|
|
->falseLabel('Brouillons')
|
|
->native(false),
|
|
])
|
|
->actions([
|
|
Tables\Actions\EditAction::make(),
|
|
Tables\Actions\DeleteAction::make(),
|
|
])
|
|
->bulkActions([
|
|
Tables\Actions\BulkActionGroup::make([
|
|
Tables\Actions\DeleteBulkAction::make(),
|
|
]),
|
|
]);
|
|
}
|
|
|
|
public static function getPages(): array
|
|
{
|
|
return [
|
|
'index' => Pages\ListInformation::route('/'),
|
|
'create' => Pages\CreateInformation::route('/create'),
|
|
'edit' => Pages\EditInformation::route('/{record}/edit'),
|
|
];
|
|
}
|
|
}
|