khairulazmi_
khairulazmi_
FFilament
Created by khairulazmi_ on 9/13/2024 in #❓┊help
Why we cant use take() method inside query method ?
No description
4 replies
FFilament
Created by khairulazmi_ on 6/10/2024 in #❓┊help
How to remove button clear ?
No description
2 replies
FFilament
Created by khairulazmi_ on 6/10/2024 in #❓┊help
How to remove this clear button ?
No description
2 replies
FFilament
Created by khairulazmi_ on 5/30/2024 in #❓┊help
can we use file upload components inside our livewire ?
I mean using it inside normal form .
8 replies
FFilament
Created by khairulazmi_ on 5/25/2024 in #❓┊help
How to make form inside Action live ?
No description
3 replies
FFilament
Created by khairulazmi_ on 5/3/2024 in #❓┊help
Modal Action inside Slideover [BUG]
I have issue when I click modal inside Slideover , the page hangs . Would it be possible to achieve this ? Where Modal is inside Slideover .
6 replies
FFilament
Created by khairulazmi_ on 3/8/2024 in #❓┊help
How to group this code ?
Hi anyone knows how to group the calling function , so I can just initialize
php (new Appointment())->getAvailableTimes($get('date'))
php (new Appointment())->getAvailableTimes($get('date'))
once .
Select::make('slot')
->prefixIcon(fn (Get $get, ?Model $record) =>
(new Appointment())->getAvailableTimes($get('date')) != null ? 'heroicon-o-check' : "heroicon-o-x-mark"
)
->prefixIconColor(fn (Get $get, ?Model $record) =>
(new Appointment())->getAvailableTimes($get('date')) != null ? 'primary' : "gray"
)
->disabled(fn (Get $get, ?Model $record) =>
(new Appointment())->getAvailableTimes($get('date')) != null ?
)
->options(fn (Get $get, ?Model $record) =>
(new Appointment())->getAvailableTimes($get('date'))
)
Select::make('slot')
->prefixIcon(fn (Get $get, ?Model $record) =>
(new Appointment())->getAvailableTimes($get('date')) != null ? 'heroicon-o-check' : "heroicon-o-x-mark"
)
->prefixIconColor(fn (Get $get, ?Model $record) =>
(new Appointment())->getAvailableTimes($get('date')) != null ? 'primary' : "gray"
)
->disabled(fn (Get $get, ?Model $record) =>
(new Appointment())->getAvailableTimes($get('date')) != null ?
)
->options(fn (Get $get, ?Model $record) =>
(new Appointment())->getAvailableTimes($get('date'))
)
5 replies
FFilament
Created by khairulazmi_ on 3/4/2024 in #❓┊help
Modal overflow text
No description
5 replies
FFilament
Created by khairulazmi_ on 3/4/2024 in #❓┊help
tailwindcss rounded-s-lg not working
I try to implement class rounded-s-lg but seems not working. anyone knows why ?
4 replies
FFilament
Created by khairulazmi_ on 3/1/2024 in #❓┊help
Sidebar Item at the Bottom [UI Issue] 😃
No description
3 replies
FFilament
Created by khairulazmi_ on 2/29/2024 in #❓┊help
Custom Pages ignore tenant
No description
3 replies
FFilament
Created by khairulazmi_ on 2/28/2024 in #❓┊help
Multi tenancy and CustomEditProfile
I have a CustomEditProfile Page
->userMenuItems([
'profile' => MenuItem::make()->url(fn (): string => EditProfile::getUrl()),
])
->userMenuItems([
'profile' => MenuItem::make()->url(fn (): string => EditProfile::getUrl()),
])
When I go to create new tenant which will go to "/new route . I will get error

Missing required parameter for [Route: filament.admin.pages.profile] [URI: {tenant}/profile] [Missing parameter: tenant].

Missing required parameter for [Route: filament.admin.pages.profile] [URI: {tenant}/profile] [Missing parameter: tenant].
Right now I found a solution do this
->userMenuItems([
'profile' => MenuItem::make()->url(fn (): string => EditProfile::getUrl())->hidden(fn (): bool => request()->routeIs('filament.admin.tenant.registration')),
->userMenuItems([
'profile' => MenuItem::make()->url(fn (): string => EditProfile::getUrl())->hidden(fn (): bool => request()->routeIs('filament.admin.tenant.registration')),
But I think there is a better way , anyone can help me ?
8 replies
FFilament
Created by khairulazmi_ on 2/28/2024 in #❓┊help
How to add parameter tenant inside Pages ?
No description
8 replies
FFilament
Created by khairulazmi_ on 2/6/2024 in #❓┊help
can cluster support top navigation ?
No description
4 replies
FFilament
Created by khairulazmi_ on 1/31/2024 in #❓┊help
Set Tags Color base on database value
No description
3 replies