Skip to content

1.1.0

Compare
Choose a tag to compare
@atmonshi atmonshi released this 09 Feb 17:18
· 32 commits to 1.x since this release
577c5ee

What's Changed

  • refactor to alpine anchor by @atmonshi in #7
    using alpine x-anchor instead of tooltip js

if you're using it with livewire component, you must add a unique key as the example:

in your form:
please notice the type is our key per column

PopoverColumn::make('name')
    //.... other config
    ->content(fn ($record) => view('filament.user-card', ['record' => $record, 'type' => 'name'])),

PopoverColumn::make('email')
    //.... other config
    ->content(fn ($record) => view('filament.user-card', ['record' => $record, 'type' => 'email'])),

now in your LW view:

<livewire:user-card :$record :key="$record->id.'-'.$type"/>

Full Changelog: 1.0.4...1.1.0