Maru
Maru
FFilament
Created by Maru on 6/9/2024 in #❓┊help
Dashboard responsive columns not working as I expected
No description
3 replies
FFilament
Created by Maru on 5/12/2024 in #❓┊help
Action not working in livewire component
my actions button shown but can't perform anything this is my code Inside of my class page
class DetailUserVerificationRequest extends Page implements HasInfolists, HasActions
{
use InteractsWithInfolists, InteractsWithActions;

[other code]

public function acceptAction(): Action
{
return Action::make('Konfirmasi')
->outlined()
->icon('heroicon-m-check')
->requiresConfirmation()
->action(fn () => $this->testCase());
}

public function testCase()
{
dd($this->request);
}
}
class DetailUserVerificationRequest extends Page implements HasInfolists, HasActions
{
use InteractsWithInfolists, InteractsWithActions;

[other code]

public function acceptAction(): Action
{
return Action::make('Konfirmasi')
->outlined()
->icon('heroicon-m-check')
->requiresConfirmation()
->action(fn () => $this->testCase());
}

public function testCase()
{
dd($this->request);
}
}
Inside the view
<x-filament-panels::page>
<div class="flex gap-3">
{{ $this->acceptAction }}
</div>

[other code]

<x-filament-actions::modals />
</x-filament-panels::page>
<x-filament-panels::page>
<div class="flex gap-3">
{{ $this->acceptAction }}
</div>

[other code]

<x-filament-actions::modals />
</x-filament-panels::page>
6 replies
FFilament
Created by Maru on 3/23/2024 in #❓┊help
Is it possible to make table on custom page without eloquent?
I want to make POS with livewire, and I can't figure out how I can make table with reactive array data on it
6 replies
FFilament
Created by Maru on 11/10/2023 in #❓┊help
Trying to login to panel and got memory leaks
No description
2 replies