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'])), ]); } }