(--')pwD
Filament routing
I am builing a multi tenant app using "tenancy for laravel" and I want to have an admin panel (using filament) on my central domain to manage all tentants information.
The filament route would be "central.domain/admin"
If a tenant tries to access "tenant.central.domain/admin", a 404 should be shown.
I managed to get this working simply by changing :
$domains = $panel->getDomains();
to
$domains = config('tenancy.central_domains');
On filaments vendor/filament/routes/web.php
However, I am guessing that breaks filaments native multi tenancy which i probably wont use but I'd like to keep things as clean as possible
2 replies
Creating a custom page with Fullcalendar Widget + Import / Export data
Hello guys,
I've been given a laravel filament project at work because a collegue had some personal problems and I'm on a super tight schedule. I've never used filament and I don't know how to do any of what I've been asked. Can someone please help?
I am using filament 2 and what I basically need is a "custom" page with a full calendar widget and the ability to import / export a csv with dates to and from the database to be shown on the calendar.
I spent the entire day trying to find some help online but couldn't find anything that was helpfull.
4 replies