Aya Alghadban
Aya Alghadban
FFilament
Created by Aya Alghadban on 7/20/2024 in #❓┊help
customize home page
yes it is
5 replies
FFilament
Created by Aya Alghadban on 7/17/2024 in #❓┊help
Many to Many Relation
this is ProductResource code i use it with previos codes
9 replies
FFilament
Created by Aya Alghadban on 7/17/2024 in #❓┊help
Many to Many Relation
yes i put it in ProductUnit Model
9 replies
FFilament
Created by Aya Alghadban on 7/17/2024 in #❓┊help
Many to Many Relation
i use attach before but error is same
9 replies
FFilament
Created by Aya Alghadban on 7/17/2024 in #❓┊help
Many to Many Relation
i have code ProductResource but it is not sent yet
9 replies
FFilament
Created by Aya Alghadban on 6/12/2024 in #❓┊help
help
No description
22 replies
FFilament
Created by Aya Alghadban on 6/12/2024 in #❓┊help
help
i want customize my table in the filament
22 replies
FFilament
Created by Aya Alghadban on 6/12/2024 in #❓┊help
help
No description
22 replies
FFilament
Created by Aya Alghadban on 6/12/2024 in #❓┊help
help
No description
22 replies
FFilament
Created by Aya Alghadban on 6/12/2024 in #❓┊help
help
No description
22 replies
FFilament
Created by Aya Alghadban on 6/12/2024 in #❓┊help
help
No description
22 replies
FFilament
Created by Aya Alghadban on 6/12/2024 in #❓┊help
help
No description
22 replies
FFilament
Created by Aya Alghadban on 6/12/2024 in #❓┊help
help
i create already guard how can i put it in filament to access only company_employee
22 replies
FFilament
Created by Aya Alghadban on 6/12/2024 in #❓┊help
help
class AdminPanelProvider extends PanelProvider { public function panel(Panel $panel): Panel { return $panel ->default() ->id('admin') ->path('admin') ->login() ->colors([ 'primary' => Color::Amber, ]) ->discoverResources(in: app_path('Filament/Resources'), for: 'App\Filament\Resources') ->discoverPages(in: app_path('Filament/Pages'), for: 'App\Filament\Pages') ->pages([ Pages\Dashboard::class, ]) ->discoverWidgets(in: app_path('Filament/Widgets'), for: 'App\Filament\Widgets') ->widgets([ Widgets\AccountWidget::class, Widgets\FilamentInfoWidget::class, ]) ->middleware([ EncryptCookies::class, AddQueuedCookiesToResponse::class, StartSession::class, AuthenticateSession::class, ShareErrorsFromSession::class, VerifyCsrfToken::class, SubstituteBindings::class, DisableBladeIconComponents::class, DispatchServingFilamentEvent::class, ]) ->authMiddleware([ Authenticate::class, ]); } } in this code where can i edit to accept only company_employee for login
22 replies