Forever
Forever
FFilament
Created by SheepBild on 4/2/2024 in #❓┊help
Full width FilamentPHP
npm run build
7 replies
FFilament
Created by Raziul Islam on 3/28/2024 in #❓┊help
Allowed memory size of 134217728 bytes exhausted
whats your table defintion
41 replies
FFilament
Created by Raziul Islam on 3/28/2024 in #❓┊help
Allowed memory size of 134217728 bytes exhausted
otherwise you may be loading to much data at once OR you have an infinite loop
41 replies
FFilament
Created by Raziul Islam on 3/28/2024 in #❓┊help
Allowed memory size of 134217728 bytes exhausted
memory_limit=256M should be enough
41 replies
FFilament
Created by prowler on 3/13/2024 in #❓┊help
Using Filament only as a "CRUD add-on" within a bigger app
Yes
8 replies
FFilament
Created by jeverington on 2/8/2024 in #❓┊help
Multi-Tenancy: Page for when a user is not part of any team and registration is not enabled.
or if you dont want to canAccesTenant() => redirect from there
9 replies
FFilament
Created by jeverington on 2/8/2024 in #❓┊help
Multi-Tenancy: Page for when a user is not part of any team and registration is not enabled.
my guess is to overwrite the IdentifyTenant class
9 replies
FFilament
Created by Alnuaimi on 2/8/2024 in #❓┊help
How do Onboarding
3 replies
FFilament
Created by Wirkhof on 2/7/2024 in #❓┊help
After upgrading to 3.2 canManage stopped working
See the implenents FilamentUser on the User
39 replies
FFilament
Created by Wirkhof on 2/7/2024 in #❓┊help
After upgrading to 3.2 canManage stopped working
39 replies
FFilament
Created by Wirkhof on 2/7/2024 in #❓┊help
After upgrading to 3.2 canManage stopped working
you need to setup your User
39 replies
FFilament
Created by Wirkhof on 2/7/2024 in #❓┊help
After upgrading to 3.2 canManage stopped working
yes
39 replies
FFilament
Created by Wirkhof on 2/7/2024 in #❓┊help
After upgrading to 3.2 canManage stopped working
tthen it should be auth()->user()->hasRole("superadmin")
39 replies
FFilament
Created by Wirkhof on 2/7/2024 in #❓┊help
After upgrading to 3.2 canManage stopped working
if you dont have permissions just return true
39 replies
FFilament
Created by Wirkhof on 2/7/2024 in #❓┊help
After upgrading to 3.2 canManage stopped working
the canManageSettings is just a placeholder for your own code
39 replies
FFilament
Created by Wirkhof on 2/7/2024 in #❓┊help
How to turn off casting during seeding?
via eleoquent i guess so try something like this:
$brand = new Brand();
$brand->setRawAttributes(["your"=>"attributes"])
$brand->save();
$brand = new Brand();
$brand->setRawAttributes(["your"=>"attributes"])
$brand->save();
12 replies
FFilament
Created by Wirkhof on 2/7/2024 in #❓┊help
How to turn off casting during seeding?
How Do you Seed ?
12 replies
FFilament
Created by Alnuaimi on 2/6/2024 in #❓┊help
lockout user after 3 failed logins for 10 minutes?
6 replies
FFilament
Created by Alnuaimi on 2/6/2024 in #❓┊help
lockout user after 3 failed logins for 10 minutes?
yout mean this ?
6 replies
FFilament
Created by Forever on 1/29/2024 in #❓┊help
Third Layer Navigation.
Solution:
$navItem->childItems([...$children])
$navItem->childItems([...$children])
`
26 replies