khairulazmi_
khairulazmi_
FFilament
Created by khairulazmi_ on 3/13/2025 in #❓┊help
How to optimize usage of searchable().
Hello filament member . I have this code .
>columns([
TextColumn::make('index')
->label('No.')
->rowIndex(),
ImageColumn::make('photo')->label('')->circular(),
// ImageColumn::make('user.avatar')
// ->label('')
// ->circular(),
TextColumn::make('fullName')
->label('Full Name')
->searchable(['firstname', 'lastname'])
->placeholder('N/A'),
TextColumn::make('designation')
->label('Designation')
->placeholder('N/A')
->searchable()
->toggleable(isToggledHiddenByDefault: true),
TextColumn::make('phone')
->label('Phone No')
->placeholder('N/A')
->searchable()
->toggleable(isToggledHiddenByDefault: true),
TextColumn::make('mobile')
->label('Mobile')
->placeholder('N/A')
->searchable()
->toggleable(isToggledHiddenByDefault: true),
>columns([
TextColumn::make('index')
->label('No.')
->rowIndex(),
ImageColumn::make('photo')->label('')->circular(),
// ImageColumn::make('user.avatar')
// ->label('')
// ->circular(),
TextColumn::make('fullName')
->label('Full Name')
->searchable(['firstname', 'lastname'])
->placeholder('N/A'),
TextColumn::make('designation')
->label('Designation')
->placeholder('N/A')
->searchable()
->toggleable(isToggledHiddenByDefault: true),
TextColumn::make('phone')
->label('Phone No')
->placeholder('N/A')
->searchable()
->toggleable(isToggledHiddenByDefault: true),
TextColumn::make('mobile')
->label('Mobile')
->placeholder('N/A')
->searchable()
->toggleable(isToggledHiddenByDefault: true),
20 replies
FFilament
Created by khairulazmi_ on 3/12/2025 in #❓┊help
can we hook configureUsing after render .
Is there any way we can use configureUsing after render table for example
Table::configureUsing(function (Table $table){
$table->paginated([5, 10, 25, 50]);
});
Table::configureUsing(function (Table $table){
$table->paginated([5, 10, 25, 50]);
});
this will call before we initialized on livewire component . I want to called method after table initialize
public function table(){
}
public function table(){
}
/// do something here , calling some method here. on view
$this->table
$this->table
3 replies
FFilament
Created by khairulazmi_ on 3/5/2025 in #❓┊help
can we render hooks on table content ?
I want to hook to table content .. its there any way i can do that ? https://filamentphp.com/docs/3.x/support/render-hooks#table-builder-render-hooks
3 replies
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