Hasith
Form validation messages
Plus my presets are not working fine as well. So i manually copy and paste colors from that file to my tailwind.config file. not sure why it's not working. Maybe some conflict with
require("daisyui")
. I'm using MaryUi as my Ui library.18 replies
Form validation messages
Yeah. Solve the problem. I don't know the reason but browser validation messages only triggered when using
->required()
. Using ->rules(['required'])
fix my problem. I mention it here if anyone looks for it again. if you can mark this as the solution.18 replies
Form validation messages
I have the same problem. I'm using filament form inside my Livewire component. Validation messages appear as browser validations. But i want to show them in red color below the input field like normal filament forms are showing in the panels.
18 replies
Convert Repeater to a Multiple Select Field
Can you check this section on repeater ? https://filamentphp.com/docs/3.x/forms/fields/repeater#integrating-with-an-eloquent-relationship
18 replies
Convert Repeater to a Multiple Select Field
This is my form input fiedl and it's give me an error saying
SQLSTATE[42S22]: Column not found: 1054 Unknown column 'post_categories.' in 'field list'
. This is my Model Configurations to my Pivot table using a pivot Model. @Tally
In my Post Model
In my Pivot Table Model (PostCategory)
18 replies