Skip to content

Commit

Permalink
Merge branch 'v3' of github.com:lara-zeus/demo into v3
Browse files Browse the repository at this point in the history
  • Loading branch information
atmonshi committed Feb 9, 2024
2 parents e8b73c1 + 7a1a66e commit feaa3b4
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions app/Filament/Pages/Popover.php
Original file line number Diff line number Diff line change
Expand Up @@ -49,17 +49,17 @@ 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()
->trigger('click')
->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'])),
]);
}
}

0 comments on commit feaa3b4

Please sign in to comment.