diff --git a/app/Filament/Clusters/Cards/Cards/CardResource.php b/app/Filament/Clusters/Cards/Cards/CardResource.php index 913e902..2dba1d0 100644 --- a/app/Filament/Clusters/Cards/Cards/CardResource.php +++ b/app/Filament/Clusters/Cards/Cards/CardResource.php @@ -55,7 +55,7 @@ class CardResource extends Resource ->native(false) ->columnSpan('1') ->required(), - + TextInput::make('name') ->label(__('Card name')) ->maxLength(255) @@ -75,15 +75,15 @@ class CardResource extends Resource TextColumn::make('name') ->label(__('Card name')) ->searchable(), - - TextColumn::make('month') + + TextColumn::make('month') ->label(__('Card month')) ->searchable(), - - TextColumn::make('year') + + TextColumn::make('year') ->label(__('Card year')) ->searchable(), - + TextColumn::make('created_at') ->dateTime() ->sortable() diff --git a/app/Modules/AppHelpers/Repositories/DateHelper.php b/app/Modules/AppHelpers/Repositories/DateHelper.php index 6643673..42d883b 100644 --- a/app/Modules/AppHelpers/Repositories/DateHelper.php +++ b/app/Modules/AppHelpers/Repositories/DateHelper.php @@ -23,7 +23,7 @@ class DateHelper /** * Static numbers for months * - * @return array + * @return array */ public static function staticNumberMonths(): array { @@ -47,7 +47,6 @@ class DateHelper * Years until * * @param int|int $max - * * @return array */ public static function yearsUntil(int $max = 50): array @@ -140,4 +139,4 @@ class DateHelper '2090' => '2090', ]; } -} \ No newline at end of file +}