ocram82
email-verification-prompt view customization
hi, i'm trying to customize the view of
Filament\Pages\Auth\EmailVerification\EmailVerificationPrompt
i've just created
and this works. But in the view page i've this:
but i obtain an error like this:
Method App\Filament\Company\Pages\Auth\EmailVerificationPrompt::getCachedSubNavigation does not exist.
Any solutions? thanks
3 replies
Route [filament.admin.auth.email-verification.verify] not defined.
Hi all, i've 3 panel:
- admin
- company
- user
In the
CompanyPanelProvider
i've added a custom Register class. And it works well.
But after submittin the registration i obtain the error:
Route [filament.admin.auth.email-verification.verify] not defined.
But i don't understand the error....I've MustVerifyEmail in User.php and ->emailVerification() in CompanyPanelProvider....what's wrong?11 replies
Database notification error Broadcasting [database-notifications.sent] on channels
Hi, every time i dispatch a job that has this code:
I obtain a 500 error in log file like this:
In the panel provider i've this:
and in the
.env
the variabile QUEUE_CONNECTION=redis
what's wrong on this?3 replies
Filter parameter
hi all, i've a RelationManager:
UsersRelationManager
and in $table object i've this filter:
The relations from Users and Casting are this:
How can i call UserCastingStatusFilter
with casting_id considering that i've the relationManager inside Casting page view?2 replies
Export pdf with custom layout
hi, i want an action that give me the possibility to export a pdf of a user data. I just have those data and also custom template. But how can i export in pdf ?
And what if fot have this action Bulk? how could i do?
18 replies
ExportAction download file on Digital Ocean Spaces
hi all, as i mention in the title i've and export action like this:
If i set the
FILAMENT_FILESYSTEM_DISK=local
or not set it all it's ok: after i click export button i receive a notification in which i have the link to download the csv or xlsx and all that's fine.
But if i set FILAMENT_FILESYSTEM_DISK=s3
all it's ok until i try to download the file. If i click on link to csv or xlsx i receive and error page like the image shows.
the error is in :
What's wrong with this? Consider that i only want to download and not store those files.
#help #Export download link3 replies
Export download link
Hi all, i've implemented the export functionality following this guide https://filamentphp.com/docs/3.x/actions/prebuilt-actions/export#overview all works: the file after pressing export button are correctly stored into
storage/app/public/filament_export/
inside a folder named by a progressive number.
But now, how i can give the download link to a user?
Do i have to create a resource to manage all the exports or any others idea?
thanks11 replies