We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent aa3ab10 commit 87133d0Copy full SHA for 87133d0
app/Filament/Resources/ArticleResource.php
@@ -56,6 +56,9 @@ public static function table(Table $table): Table
56
->label('Auteur')
57
->sortable()
58
->searchable(),
59
+ Tables\Columns\TextColumn::make('created_at')
60
+ ->label(__('Date de création'))
61
+ ->date(),
62
Tables\Columns\IconColumn::make('published_at')
63
->label('Publié')
64
->getStateUsing(fn (Article $record) => $record->isPublished())
0 commit comments