RelationshipManager refresh after edit
after edit null field getting error
Solution:Jump to solution
I have this maybe it helps https://dev.to/biostate/refresh-filament-relation-manager-after-an-action-2ind
DEV Community
Refresh Filament Relation Manager After an Action
In my FilamentPHP project, I have an action button that creates relationships for my resource....
8 Replies
after editing null field on form getting error
Typed property Filament\Resources\RelationManagers\RelationManager::$table must not be accessed before initialization
Uncaught (in promise) TypeError: Cannot read properties of null (reading 'dataset')
at j2 (@inertiajs_vue3.js?v=f2fbe64e:4454:101)
at app.js:11:1
im doing wrong?
Solution
I have this maybe it helps https://dev.to/biostate/refresh-filament-relation-manager-after-an-action-2ind
DEV Community
Refresh Filament Relation Manager After an Action
In my FilamentPHP project, I have an action button that creates relationships for my resource....
Method App\Filament\Resources\AppointmentResource\Pages\ViewAppointment::emit does not exist.
im doing wrong?
@bathishig the article by @OzgurOzarpaci is probably written for Livewire 2.
In Livewire 3, they changed the syntax from
emit()
to dispatch()
: https://livewire.laravel.com/docs/upgrading#eventsLaravel
Upgrade Guide | Laravel
A full-stack framework for Laravel that takes the pain out of building dynamic UIs.
Yeap it's V2