Hitesh Makwana
Hitesh Makwana
FFilament
Created by taz on 12/23/2024 in #❓┊help
ToggleButtons default not working
Forms\Components\ToggleButtons::make('technologies')
->default(['tailwind', 'alpine'])
->multiple()
->options([
'tailwind' => 'Tailwind CSS',
'alpine' => 'Alpine.js',
'laravel' => 'Laravel',
'livewire' => 'Laravel Livewire',
])
Forms\Components\ToggleButtons::make('technologies')
->default(['tailwind', 'alpine'])
->multiple()
->options([
'tailwind' => 'Tailwind CSS',
'alpine' => 'Alpine.js',
'laravel' => 'Laravel',
'livewire' => 'Laravel Livewire',
])
use default data in array because you use multiple
8 replies
FFilament
Created by gigiloouu on 12/24/2024 in #❓┊help
show total sum by filters
try with using function same as you use for get column record
41 replies
FFilament
Created by gigiloouu on 12/24/2024 in #❓┊help
show total sum by filters
yes test it once
41 replies
FFilament
Created by gigiloouu on 12/24/2024 in #❓┊help
show total sum by filters
for column
41 replies
FFilament
Created by gigiloouu on 12/24/2024 in #❓┊help
show total sum by filters
use only
->summarize([
Tables\Columns\Summarizers\Sum::make()
->money(),
])
->summarize([
Tables\Columns\Summarizers\Sum::make()
->money(),
])
41 replies
FFilament
Created by gigiloouu on 12/24/2024 in #❓┊help
show total sum by filters
Tables\Columns\TextColumn::make('total')
->sortable()
->summarize([
Tables\Columns\Summarizers\Sum::make()
->money(),
]),
Tables\Columns\TextColumn::make('total')
->sortable()
->summarize([
Tables\Columns\Summarizers\Sum::make()
->money(),
]),
41 replies
FFilament
Created by gigiloouu on 12/24/2024 in #❓┊help
show total sum by filters
41 replies
FFilament
Created by Hitesh Makwana on 12/20/2024 in #❓┊help
Help me to select address from address list in modal
Thank you for you respond I have populated address list in table in modal I have created action in that widget too now is there any option that I can handle that click in my AddressForm class?
7 replies
FFilament
Created by Hitesh Makwana on 12/20/2024 in #❓┊help
Help me to select address from address list in modal
7 replies
FFilament
Created by Hitesh Makwana on 12/20/2024 in #❓┊help
Help me to select address from address list in modal
Here What I exactly want that I have my addresses with relation to customer In Quotation Form I want to give manual enter address as well and also user can select address from customer's address When user click on search icon user will see modal with list of customer's address from the customer's address listed in table with an action button "use address" I want to use all record to fill in the forms I mention all codes above
7 replies