Classification filament plugin ??!!
Hi, I would need your opinion on a plugin that I would like to create for filament.
I wanted to organize the classification of the contacts model . I wanted to create a classification_types table with the following fields:
id
name...
Disable pagination when filters are applied.
I'm using different filters but I want to remove the pagination once a filter is applied, is it doable within the filters context?
Solution:
Thank you and I also ended up with this one
Using Repeater to save as JSON and display in Table
Hi all,
The repeater field is driving me crazy. I use it to save a JSON array in the database but I am not able to display it in a table
I have a model called 'Billing'
Let's say it has only the fields 'id' and 'validity'...
Solution:
Thank you very much.
I really wanted to avoid the relationship because json looked so much easier.
It very unfortunate that iz does not work with json.
I will give it a try with relationship....

Three level dependent select
i have 3 table like this :
table a => id, name
table b =>id, table_a_id, name
table c => id, table_b_id, name
...Checking for conflict in day, time and room validation.
Hi Tuto, May I ask your expertise on how can I implement a validation rule on checking the conflict of the day, time and room in a class schedule? I am using Laravel 10 and Filament 3.0. I have a belongsToMany relationship between the subjects and a schedule. I don't how or where to start. Appreciate your help. Thank you!
group by tenant
Hi Tuto, I need to show on my table a group by tenant. this group will be applied for the userResource. If i have one tenant assigned to each user the group works well. However if an user belongs to two or more tenants , i get an error. SQLSTATE[21000]: Cardinality violation: 1242 Subquery returns more than 1 row. Any help is appreciated. thanks
Sortable() and Searchable() not behaving as expected
Hello,
Not sure why this Filament table is not behaving as expected when clicking the arrow to sort or typing into the search field. Suggestions?
https://gist.github.com/wrperin/e6181516c7606e1e352bc0d424cca6ad...
Solution:
Well, I've made some progress! I used a bit of Povilas' alpine.js conflict article, and I added in my livewire component class. This fixed my sortable and searchable problem!...
use Livewire\Attributes\Layout;
#[Layout('layouts.app')]
use Livewire\Attributes\Layout;
#[Layout('layouts.app')]
Simple (modal) resource and mutateFormDataBeforeSave()
I have a problem with my simple resource.
I need to mutate the data before saving, but it's not possible to use mutateFormDataBeforeSave() as I would do with normal resource.
Any ideas?
I would like to add the following code:
```php...
Solution:
Try adding
->using()
to the Filament\Tables\Actions\EditAction
https://filamentphp.com/docs/3.x/actions/prebuilt-actions/edit#customizing-the-saving-process
```php
use Illuminate\Database\Eloquent\Model;
...How to integrate filament v3 with stored procedure
I want to use stored procedures for CRUD needs. But I'm confused about how to call the stored procedure function from the create/edit button, or when I want to display the resulting data from the stored procedure in a table. anyone can help ?
Solution:
I think I'm going to record a video about this concept. Do you mind if I include your question in the video?(including your discord user name).
Here's an example of using stored procedures to manage the users in a filament resource. First the create action
```php
// app/Filament/Resources/Pages/CreateUser.php
class CreateUser extends CreateRecord...
KeyValue UI not updating after $set(), but the value is changed
Hi Guys,
I am using a button to change the keys and/or values in a KeyValue field that already contains data.
When i do this the UI does not change, but the value will.
...

attach properties to products - many to many relation
I have ProductResource and I want to associate some Properties to each product. For this I made a PropertiesRelationalManager
The PropertyResource is bind of Property model and to the properties table. The properties table have the 2 columns, id and name
The property values are stored in the property_values table which have the following columns: id, property_id and value...
Custom page with custom table
I'm working in a personal project where i want to feed my table with api data. I have already tried to use sushi, however it has a limitation when i talk about a paginated api. So the alternative i found was build a custom page, host a custom table and try to navigate through the api with it. But at this point i'm not progressing, someone can help me with livewire table content or any sort of help?
This is my project at github:
https://github.com/eduardoximenes/filament-app.git...
Solution:
I've finished the custom table. At this point, i don't think i need sushi anymore. Let's see what happens next...
Filament-selectify
Hello all. Merry Christmass and a Happy New Year!
For those who believe still in Santa, I thought to take a lead and share something interesting I've found. I am not in any way related to it (unfortunately) but just thought that for people who would like to make their coding life easier and like to use for their projects the mighty Filament admin panel , this would be a perfect addition:
https://github.com/andrewdwallo/filament-selectify...
Clean filters
I create custom pages to show 2 or 3 widgets, all has
I need when navigate and comeback to the pages, the filters set null....
use HasFiltersForm;
use HasFiltersForm;
Filament Test
Good evening, can anyone help with filament test using pest. I wanted to test the dashboard panel login. For examples can't be accessed by guest and redirect it to the login page.
multi tenancy
I have this error i'm using multi tenancy, I have companies table and i have fuel_options table that is linked with the companis table whene i create fuel option i get the error in the picture

Work with private images
I am developing an admin panel for a little store so they can manage their stock, sells, etc. I need to allow them to upload images for categories and products but I don't want them to be public, so I am saving them inside storage/app/product-categories for example.
Now the problem is I want to show that image in a table or to preview it on the form but there is no public url to do so. My idea was to create a specific route to handle this so only logged in users can see the image but I couldn't find a way to modify the src attribute of the image in the Table Builder. Does anyone know how to do this or am I force to have them stored inside the public folder? What if I need to store sensitive images?...
Solution:
I will answer myself:
1. I have created a new route to handle image downloads for product categories.
2. Used Tables\Columns\ViewColumn to load a custom blade view.
3. In that custom blade view all I have is a img tag pointing to the url I just created....
Has anybody successfully tried the new import action yet?
Hi, all: As the title says - has anybody tried to implement the new import action successfully yet? I followed the documentation but somehow fail to import records. I suspect the issue is somewhere in the queue because the import sits forever in
pending_jobs
in the job_batches
table in the database. Is there a special command for job batch queueing apart from the queue:work
, I wonder? @Tuto - it would be really great if you could record a short video just for this feature. There is not...