Rolland
Rolland
FFilament
Created by Rolland on 2/24/2025 in #❓┊help
How to make a list of action in custom modal unique?
yeah you right. I went and create a livewire component instead. now it is working. thank you
7 replies
FFilament
Created by Rolland on 2/24/2025 in #❓┊help
How to make a list of action in custom modal unique?
as you can see from the gif, the loading on other item is also triggered.
7 replies
FFilament
Created by Rolland on 2/24/2025 in #❓┊help
How to make a list of action in custom modal unique?
No description
7 replies
FFilament
Created by Rolland on 2/24/2025 in #❓┊help
How to make a list of action in custom modal unique?
<?php

namespace App\Filament\Resources\Inventories\RequisitionResource\Tables\Actions\Rfp;

class RfpContainerAction extends BaseRequestAction implements HandleCustomActionInterface
{

public function getIdentifier(): string
{
return 'rfp_container_action';
}

public function getLabel(): Htmlable|string|null
{
return 'Rfp Requests';
}

public function getModalHeading(): string|Htmlable
{
return 'Rfp Requests';
}

public function getColor(): array|string|null
{
return Color::Yellow;
}

public function getIcon(): Htmlable|string|null
{
return 'heroicon-m-clipboard-document-list';
}

public function setUp(): void
{
parent::setUp();

$this->getSetUp();
}

private function getSetUp(): static
{
$this->registerModalActions([
RfpCreateAction::make('create'),
RfpDeleteAction::make('delete'),
// $this->getEditAction(),
// $this->getDeleteAction(),
]);

$this->setModalContent();

return $this;
}

private function setModalContent(): void
{
$this->modalContent(fn(Model $record, Action $action) => view(
'filament.tables.actions.contents.rfp-container-action',
[
'record' => $record,
'action' => $action,
]
));
}
}
<?php

namespace App\Filament\Resources\Inventories\RequisitionResource\Tables\Actions\Rfp;

class RfpContainerAction extends BaseRequestAction implements HandleCustomActionInterface
{

public function getIdentifier(): string
{
return 'rfp_container_action';
}

public function getLabel(): Htmlable|string|null
{
return 'Rfp Requests';
}

public function getModalHeading(): string|Htmlable
{
return 'Rfp Requests';
}

public function getColor(): array|string|null
{
return Color::Yellow;
}

public function getIcon(): Htmlable|string|null
{
return 'heroicon-m-clipboard-document-list';
}

public function setUp(): void
{
parent::setUp();

$this->getSetUp();
}

private function getSetUp(): static
{
$this->registerModalActions([
RfpCreateAction::make('create'),
RfpDeleteAction::make('delete'),
// $this->getEditAction(),
// $this->getDeleteAction(),
]);

$this->setModalContent();

return $this;
}

private function setModalContent(): void
{
$this->modalContent(fn(Model $record, Action $action) => view(
'filament.tables.actions.contents.rfp-container-action',
[
'record' => $record,
'action' => $action,
]
));
}
}
7 replies
FFilament
Created by Rolland on 2/14/2025 in #❓┊help
Matching container height
Forms\Components\Split::make([
Forms\Components\Section::make('Requestor Information')
->description('Details about the person making the request.')
->schema([Forms\Components\Select::make('requestor_id')])
->extraAttributes(['class' => 'h-full']),
Forms\Components\Section::make('Approval Details')
->description('Information regarding the approval process.')
->schema([
Forms\Components\Select::make('approver_id'),
Forms\Components\Select::make('pre_approver_decision'),
Forms\Components\Textarea::make('rejection_reason'),
])
])
->from('md')
->columnSpanFull()
->extraAttributes([
'class' => 'flex md:items-stretch',
]),
Forms\Components\Split::make([
Forms\Components\Section::make('Requestor Information')
->description('Details about the person making the request.')
->schema([Forms\Components\Select::make('requestor_id')])
->extraAttributes(['class' => 'h-full']),
Forms\Components\Section::make('Approval Details')
->description('Information regarding the approval process.')
->schema([
Forms\Components\Select::make('approver_id'),
Forms\Components\Select::make('pre_approver_decision'),
Forms\Components\Textarea::make('rejection_reason'),
])
])
->from('md')
->columnSpanFull()
->extraAttributes([
'class' => 'flex md:items-stretch',
]),
made a little changes since the suggested solution is not working with ->from('md'). thank you
8 replies
FFilament
Created by Rolland on 2/14/2025 in #❓┊help
Matching container height
sheeshh. thanks for the solution. really appreciate it.
8 replies
FFilament
Created by Rolland on 2/14/2025 in #❓┊help
Matching container height
No description
8 replies
FFilament
Created by jamesro on 2/12/2025 in #❓┊help
Wizzard multiple entities per each wizzard step
i think its doable using relationships
7 replies
FFilament
Created by Pro Programmer on 2/10/2025 in #❓┊help
Use Single Login Route For Multiple Panels
8 replies
FFilament
Created by Markufu on 1/11/2025 in #❓┊help
Approval Plugin
why do you implement $policies and Gate()? isnt that the same thing?
12 replies
FFilament
Created by Karl Marx on 2/5/2025 in #❓┊help
How to fully customize login page? Like adding a header and making page to 2 grids?
https://laraveldaily.com/post/filament-3-login-with-name-username-or-email
<?php

namespace App\Filament\Pages\Auth;

use Filament\Forms\Components\Component;
use Filament\Forms\Components\TextInput;
use Filament\Pages\Auth\Login as BaseAuth;
use Illuminate\Validation\ValidationException;

class Login extends BaseAuth
{
protected static string $view = 'your-view';

...
<?php

namespace App\Filament\Pages\Auth;

use Filament\Forms\Components\Component;
use Filament\Forms\Components\TextInput;
use Filament\Pages\Auth\Login as BaseAuth;
use Illuminate\Validation\ValidationException;

class Login extends BaseAuth
{
protected static string $view = 'your-view';

...
you can extend the base login and customize it.
9 replies
FFilament
Created by hizmarck on 1/28/2025 in #❓┊help
Updating from 3.2.94 to 3.2.135 breaks my menu
LMAO
12 replies
FFilament
Created by hizmarck on 1/28/2025 in #❓┊help
Updating from 3.2.94 to 3.2.135 breaks my menu
i thought people normally run the npm build whenever this kind of problem occured
12 replies
FFilament
Created by Matthew on 1/2/2025 in #❓┊help
Launch one table action from the createAction
could you explain a bit more? kinda hard to understand your 1st explanation. thank you..
17 replies
FFilament
Created by Oddman on 1/7/2025 in #❓┊help
Man... Filament is so damn slow :(
That's a very interesting step to do. why do you refuse to enabling OPcache?
30 replies
FFilament
Created by Rolland on 12/19/2024 in #❓┊help
Fix warning message ViewColumn
i got this error:
Filament\Support\Components\ViewComponent::view(): Argument #1 ($view) must be of type ?string, Closure given, called in C:\laragon\www\ewpms\app\Filament\Resources\Inventories\Itrf\ItrfResource.php on line 313
Filament\Support\Components\ViewComponent::view(): Argument #1 ($view) must be of type ?string, Closure given, called in C:\laragon\www\ewpms\app\Filament\Resources\Inventories\Itrf\ItrfResource.php on line 313
For context, I am referring the View to this "use Illuminate\Support\Facades\View;"
3 replies
FFilament
Created by Leslie on 12/18/2024 in #❓┊help
How to show a Badge on Edit Form
can try using extraAttributes()
4 replies
FFilament
Created by TegarJK on 11/27/2024 in #❓┊help
Invalid route action: [App\Filament\Auth\AdminLogin]. after running php artisan filament:optimize
check your file namespace
11 replies
FFilament
Created by roy21 on 8/12/2024 in #❓┊help
How to Set FiltersLayout::AboveContentCollapsible to be expaned by default
"FiltersLayout::AboveContent"
6 replies
FFilament
Created by Rolland on 11/18/2024 in #❓┊help
No application encryption key has been specified
It only trigger this error when on local env. very weird. can anyone explain why this happening? is this a thing with filament?
5 replies