Pasteko
Select dependant from TextInput
Hello,
I'm trying to build a zipcode search inside a form.
The user enters the zipcode manually in the text field then the select updates with only the corresponding cities. Tried to follow the various examples for dependant selects but maybe there's a better way with v3?
16 replies
Shared hosting deployment
Hello, I have a problem to deploy my filament app to a shared hosting.
With Filament v2 I was forced to publish the livewire config and set : 'asset_url' => ''
In livewire 3 asset_url is replaced by :
But I don't know where (file) I need to add this?
5 replies
->modifyQueryUsing with relations
Hello, I need to use a 'details' relation to query the state, how can I do this?
Tried to add ->with('details') or -details(), please help.
$query->with('details')->where('state', 1))
$query->details()->where('state', 1))
Thanks
5 replies
Building an array for a custom widget
Hello, trying for two days now to solve this.
What I need is to sum the quantity of items for orders with payment_status=1 and group them by format and build the widget array like this
[format][sum(quantity)]
12 replies
Sortable with nested relations
How can I use sortable with multiple relations?
when I try to sort type.year.name it gives me :
Column not found: 1054 Unknown column 'pk_types.year_id'
which is normal because there's no column year_id in table regions
8 replies