rhysleesdev
Auto save for forms
@pablopetr you can add the following method to the Pages/Edit{Resource}.php
then add
->live()
to the form elements and when they update it will call this method, then save.
note the propertyName
is passed to the update method, so if you have some other elements you dont want to trigger the save on you can filter them out.8 replies
displaying address in filament form
As @Jo said, there is no content method in View, you should use
->view('path.to.blade.view')
then define your content in the file
https://filamentphp.com/docs/3.x/forms/layout/custom7 replies
Table CSS for Livewire Page outside Filament
include the
@filamentStyles
and @filamentScripts
https://filamentphp.com/docs/3.x/tables/installation#configuring-your-layout12 replies
Registration error
Ensure you have allowed access to the panel on the user model:
https://filamentphp.com/docs/3.x/panels/users#authorizing-access-to-the-panel
3 replies
Table CSS for Livewire Page outside Filament
You should follow all the Installation steps here:
https://filamentphp.com/docs/3.x/tables/installation
12 replies
I want to build my own APIs which can be consumed by guest
@mg Ask in the official laravel server https://discord.gg/SqrSwQsj
4 replies