abdosaeedelhassan
abdosaeedelhassan
FFilament
Created by abdosaeedelhassan on 9/5/2024 in #❓┊help
Register Render Hook GLOBAL_SEARCH_BEFORE
No description
6 replies
FFilament
Created by abdosaeedelhassan on 8/4/2024 in #❓┊help
Custom Tab component
Hi, is there a way to extends Tab class and make custom form component, am tried like next use Filament\Forms\Components\Tabs\Tab; use Filament\Forms\Concerns\InteractsWithForms; use Filament\Forms\Contracts\HasForms; use Filament\Forms\Form; class HasTab extends Tab implements HasForms { use InteractsWithForms; protected string $view = 'app-settings::filament.tabs.default'; public static function make(string $label = null): static { return parent::make((new static(''))->getLabel()); } public function form(Form $form): Form { return $form ->schema([]); } } in blade when i tried {{$this->form}} it hanging up the browser
1 replies
FFilament
Created by abdosaeedelhassan on 8/3/2024 in #❓┊help
Custom Tab or custom tab view component
Is there way to make custom tab component without using blade component just with extend classes, i need to add just actions inside tab schema
3 replies
FFilament
Created by abdosaeedelhassan on 7/30/2024 in #❓┊help
Auto Discovering laravel plugins json translations
When develponing laravel plugin and register json localization with (loadJsonTranslationsFrom) its work inside laravel application, but i think filament not descovering this localization automaticlly, am asking for help letting other plugins json localizations work in filament
4 replies