Skip to content

Commit

Permalink
respponsive activity list
Browse files Browse the repository at this point in the history
  • Loading branch information
fzldn committed Sep 19, 2024
1 parent 38a2e5d commit 04b9126
Showing 1 changed file with 10 additions and 6 deletions.
16 changes: 10 additions & 6 deletions app/Filament/Resources/ActivityResource.php
Original file line number Diff line number Diff line change
Expand Up @@ -36,13 +36,17 @@ public static function table(Table $table): Table
->columns([
Tables\Columns\Layout\Split::make([
Tables\Columns\TextColumn::make('description')->html(),
Tables\Columns\TextColumn::make('created_at')
->since()
->dateTimeTooltip()
->badge()
->color('warning')
Tables\Columns\Layout\Split::make([
Tables\Columns\TextColumn::make('created_at')
->since()
->dateTimeTooltip()
->badge()
->color('warning')
->grow(false),
])
->grow(false),
]),
])
->from('md'),
])
->filters([
Tables\Filters\SelectFilter::make('causer_id')
Expand Down

0 comments on commit 04b9126

Please sign in to comment.