Matthew
Matthew
FFilament
Created by Sam Pizzo on 3/31/2025 in #❓┊help
Looking for a CRM
What's your budget ?
5 replies
FFilament
Created by Batman on 4/2/2025 in #❓┊help
Select::make('category_id') VS. Select::make('Category')
It understands the relationship...but if you haven't created the model, your relationship is null.
17 replies
FFilament
Created by Batman on 3/20/2025 in #❓┊help
Modify query when loading edit/view form
Refactor it to mine...it's neater 😆 😆
64 replies
FFilament
Created by Batman on 3/20/2025 in #❓┊help
Modify query when loading edit/view form
I think easier than that:
public static function getEloquentQuery() : Builder
{
return parent::getEloquentQuery()->withTrashed();
}
public static function getEloquentQuery() : Builder
{
return parent::getEloquentQuery()->withTrashed();
}
However, the point of soft deleting is data safety. You shouldn't have a case where you are consistently wanting to view 'deleted' records. Build a disabled condition into them.
64 replies
FFilament
Created by Batman on 3/20/2025 in #❓┊help
Modify query when loading edit/view form
64 replies
FFilament
Created by Matthew on 3/6/2025 in #❓┊help
Filament::auth()->login($user), multiple guards
Cheers, it seems to work for whichever user model I am trying for, so I'm not going to argue with it. I hate tests enough already !
5 replies
FFilament
Created by Mocus on 3/1/2025 in #❓┊help
cluster navigation -> move to main navigation
3 replies
FFilament
Created by TheNoiz on 2/25/2025 in #❓┊help
Unique attributes per category - ideas on implementation?
5 replies
FFilament
Created by TheNoiz on 2/25/2025 in #❓┊help
Unique attributes per category - ideas on implementation?
Have done something similar with a custom form builder. Use enums to determine the detail, and logic from those to determine which fields appear. On a database level, several fields are fixed as columns, and then everything too disparate for single columns is stored in JSON
5 replies
FFilament
Created by drsdre on 2/27/2025 in #❓┊help
User registration with field for team/tenant name
A table containing the columns with the data you wish to store, with a foreign key to the user\team table. Maybe I misunderstood your question.
10 replies
FFilament
Created by Luiz on 2/27/2025 in #❓┊help
todo list
Probably work better as a table ?
4 replies
FFilament
Created by drsdre on 2/27/2025 in #❓┊help
User registration with field for team/tenant name
child table
10 replies
FFilament
Created by Dan Harrin on 2/27/2025 in #❓┊help
Help Us Improve Filament’s Docs & Education in v4
Having said that, I have managed to utilise a great deal of it in less than 5 months....so from my view the documentation is effective and doesn't need a complete overhaul.
69 replies
FFilament
Created by Dan Harrin on 2/27/2025 in #❓┊help
Help Us Improve Filament’s Docs & Education in v4
I struggled with the ubiquitous naming of Actions. In the beginning, determining whether I was in the right documentation place, dependent on which type of 'Action' I was trying to work with. Also, I felt some more images would have helped.
69 replies
FFilament
Created by Matthew on 2/13/2025 in #❓┊help
Hide a Column based on getTabs() selection
Oh yes, that works. Thank you very much.
6 replies
FFilament
Created by Matthew on 2/13/2025 in #❓┊help
Hide a Column based on getTabs() selection
perhaps not ?
6 replies
FFilament
Created by jamesro on 2/12/2025 in #❓┊help
Wizzard multiple entities per each wizzard step
https://filamentphp.com/docs/3.x/forms/advanced#saving-data-to-relationships Not sure if it works at wizard step level, but you don't really need it to. You can also just use relation.column syntax on the relevant form fields
7 replies
FFilament
Created by jamesro on 2/12/2025 in #❓┊help
Wizzard multiple entities per each wizzard step
Please don't @ people. Yes, as long as you've got relationships between your models, it isn't a problem.
7 replies
FFilament
Created by HirryBirry on 12/16/2024 in #❓┊help
ToggleButtons: Click to untoggle
Maybe add a clearing hintAction ?
5 replies