From 7a1a66ead1b00cd43afcc3885ba46f7cb2166b21 Mon Sep 17 00:00:00 2001 From: atmonshi Date: Fri, 9 Feb 2024 17:36:49 +0000 Subject: [PATCH] Fix styling --- app/Filament/Pages/Popover.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/app/Filament/Pages/Popover.php b/app/Filament/Pages/Popover.php index 326ecb60..b256bba8 100644 --- a/app/Filament/Pages/Popover.php +++ b/app/Filament/Pages/Popover.php @@ -49,9 +49,9 @@ public function table(Table $table): Table //->offset(10) ->popOverMaxWidth('none') ->icon('heroicon-o-chevron-right') - ->content(fn ($record) => view('filament.test.user-card', ['record' => $record,'type' => 'name'])), + ->content(fn ($record) => view('filament.test.user-card', ['record' => $record, 'type' => 'name'])), - PopoverColumn::make('email') + PopoverColumn::make('email') ->sortable() ->searchable() ->toggleable() @@ -59,7 +59,7 @@ public function table(Table $table): Table ->placement('right') ->popOverMaxWidth('none') ->icon('heroicon-o-chevron-right') - ->content(fn ($record) => view('filament.test.user-card', ['record' => $record,'type' => 'email'])), + ->content(fn ($record) => view('filament.test.user-card', ['record' => $record, 'type' => 'email'])), ]); } }