lazydog
lazydog
Explore posts from servers
FFilament
Created by lazydog on 1/29/2025 in #❓┊help
Table Summarize value based on state
Don't worry, I always did that. thanks
11 replies
FFilament
Created by lazydog on 1/29/2025 in #❓┊help
Table Summarize value based on state
$appends is working!
11 replies
FFilament
Created by lazydog on 1/29/2025 in #❓┊help
Table Summarize value based on state
I will make it a try about the custom model property like the append does. if its not, new table column wil be better 🙂
11 replies
FFilament
Created by lazydog on 1/29/2025 in #❓┊help
Table Summarize value based on state
Temporarily, I will add a new column for this.
11 replies
FFilament
Created by gigiloouu on 1/29/2025 in #❓┊help
refresh after filter
when your filter is changed, the list from your table will be changed too. No need to refresh
25 replies
FFilament
Created by lazydog on 1/25/2025 in #❓┊help
Relationship manager does not have Create Action
Thanks, this is what I've done.
5 replies
FFilament
Created by tjodalv on 8/31/2024 in #❓┊help
Problem with Import Action - Import job never completes
Have you resolved this one? I encounter this issue too. I have 21 rows and only 11rows were processed. No error or error log. In my log I just see the broadcast notification
9 replies
FFilament
Created by lazydog on 9/4/2024 in #❓┊help
Reactive Field does not persist data
number value (badge) will be changed and depends on number of rows from the database
4 replies
FFilament
Created by Jon Mason on 8/15/2024 in #❓┊help
Good course on testing?
This is not a course but for reference, please check lunarphp, they have a lot of testing.
5 replies
FFilament
Created by TranceCode on 8/15/2024 in #❓┊help
how can disable days of week?
Check this one, this code will disable Monday options by implementing
disableOptionWhen
disableOptionWhen
method
Forms\Components\Select::make('days')
->options(['mon' => 'Monday', 'tue' => 'Tuesday'])
->disableOptionWhen(function ($value) {
$toBeDisabled = ['mon'];
return in_array($value, $toBeDisabled);
}),
Forms\Components\Select::make('days')
->options(['mon' => 'Monday', 'tue' => 'Tuesday'])
->disableOptionWhen(function ($value) {
$toBeDisabled = ['mon'];
return in_array($value, $toBeDisabled);
}),
6 replies
FFilament
Created by DZUSILL on 8/13/2024 in #❓┊help
Redirect after custom action
Try something like this
$livewire->redirect(PaymentResouce::getUrl('view', ['record' => $recordRelatedForPayment]))
$livewire->redirect(PaymentResouce::getUrl('view', ['record' => $recordRelatedForPayment]))
16 replies
FFilament
Created by lazydog on 4/4/2024 in #❓┊help
Multiple Field in Custom Field
hi @Asmit Nepali I've extended KeyValue class and customized the view
23 replies
FFilament
Created by lazydog on 6/29/2024 in #❓┊help
Repeater with DatePicker
Just like disableOptionsWhenSelectedInSiblingRepeaterItems but in DatePicker Field
4 replies
FFilament
Created by lazydog on 6/27/2024 in #❓┊help
HintIcon
Thanks @Leandro Ferreira
12 replies
FFilament
Created by lazydog on 6/27/2024 in #❓┊help
HintIcon
12 replies
FFilament
Created by lazydog on 6/27/2024 in #❓┊help
HintIcon
No description
12 replies
FFilament
Created by lazydog on 6/27/2024 in #❓┊help
HintIcon
Yes
->hintIcon('heroicon-m-question-mark-circle',tooltip: new HtmlString('<ul>
<li>Hello</li>
<li>Hi</li>
<li>How are you</li>
</ul>'))
->hintIcon('heroicon-m-question-mark-circle',tooltip: new HtmlString('<ul>
<li>Hello</li>
<li>Hi</li>
<li>How are you</li>
</ul>'))
12 replies
FFilament
Created by lazydog on 6/27/2024 in #❓┊help
HintIcon
Thanks, that's okay but I need to hover first the icon to show the "messages"
12 replies
FFilament
Created by lazydog on 6/7/2024 in #❓┊help
Favicon
I've override the favicon in root folder and it's working.
4 replies
FFilament
Created by lazydog on 6/4/2024 in #❓┊help
Filament Tenancy
Yes you are correct but needs to set/update Tenant first using setTenant.
9 replies