LeandroFerreira
LeandroFerreira
FFilament
Created by Agcodex on 7/1/2024 in #❓┊help
Create Page: How to re-render component after mount and filled values from url params .
where are you re-render the component?
11 replies
FFilament
Created by Agcodex on 7/1/2024 in #❓┊help
Create Page: How to re-render component after mount and filled values from url params .
try this
11 replies
FFilament
Created by Agcodex on 7/1/2024 in #❓┊help
Create Page: How to re-render component after mount and filled values from url params .
did you add this in the params? Are you using $this->your_param ?
use Livewire\Attributes\Url;

#[Url]
public $yourParam = '';
use Livewire\Attributes\Url;

#[Url]
public $yourParam = '';
11 replies
FFilament
Created by Agcodex on 7/1/2024 in #❓┊help
Create Page: How to re-render component after mount and filled values from url params .
custom LW component or Filament resource?
11 replies
FFilament
Created by David | Fortune Validator on 7/1/2024 in #❓┊help
Open Table Heading Model Action by URL
try this:
use Livewire\Attributes\Url;

#[Url]
public $action = null;
use Livewire\Attributes\Url;

#[Url]
public $action = null;
in the action
->extraAttributes(fn(): array => $this->action === 'create' ? ['wire:init' => new HtmlString('mountTableAction(\'create\')')] : [])
->extraAttributes(fn(): array => $this->action === 'create' ? ['wire:init' => new HtmlString('mountTableAction(\'create\')')] : [])
21 replies
FFilament
Created by David | Fortune Validator on 7/1/2024 in #❓┊help
Open Table Heading Model Action by URL
let me try..
21 replies
FFilament
Created by David | Fortune Validator on 7/1/2024 in #❓┊help
Open Table Heading Model Action by URL
hum, I didn't try using a custom LW component
21 replies
FFilament
Created by David | Fortune Validator on 7/1/2024 in #❓┊help
Open Table Heading Model Action by URL
you can pass ?action=create in the url
21 replies
FFilament
Created by David | Fortune Validator on 7/1/2024 in #❓┊help
Open Table Heading Model Action by URL
*modal, right? Create invoice opens a modal form?
21 replies
FFilament
Created by David | Fortune Validator on 7/1/2024 in #❓┊help
Open Table Heading Model Action by URL
could you explain what are you trying to do? Did you try some code?
21 replies
FFilament
Created by Alnuaimi on 7/1/2024 in #❓┊help
How to create matrix Like that
custom livewire component I guess
4 replies
FFilament
Created by hrvzmndz on 7/1/2024 in #❓┊help
Different Box Card and Different Sidebar
- you can use create multiple panels: php artisan make:filament-panel new_panel - you can use policies to hide/show resources according to the roles https://filamentphp.com/docs/3.x/panels/resources/getting-started#authorization - you can hide the navigation items https://filamentphp.com/docs/3.x/panels/navigation#conditionally-hiding-navigation-items
5 replies
FFilament
Created by Lucky0 on 6/30/2024 in #❓┊help
Toggle with eager loading in form
Use
Group::make([
Toggle::make('is_enabled')
])->relationship('notificationPreference')
Group::make([
Toggle::make('is_enabled')
])->relationship('notificationPreference')
5 replies
FFilament
Created by PabloZagni on 6/30/2024 in #❓┊help
Translate resource label
getModelLabel()? Not sure, I'm on mobile
6 replies
FFilament
Created by Steff on 6/29/2024 in #❓┊help
Specific partly output of a text column.I know the ->limit(50) method.I need a
18 replies
FFilament
Created by Steff on 6/29/2024 in #❓┊help
Specific partly output of a text column.I know the ->limit(50) method.I need a
where?
18 replies
FFilament
Created by Steff on 6/29/2024 in #❓┊help
Specific partly output of a text column.I know the ->limit(50) method.I need a
18 replies
FFilament
Created by Steff on 6/29/2024 in #❓┊help
Specific partly output of a text column.I know the ->limit(50) method.I need a
are you using formatStateUsing?
18 replies
FFilament
Created by nowak on 6/28/2024 in #❓┊help
Maximum execution time of 30 seconds exceeded
16 replies
FFilament
Created by nowak on 6/28/2024 in #❓┊help
Maximum execution time of 30 seconds exceeded
Are you using Laravel Herd?
16 replies