elmudometal
elmudometal
Explore posts from servers
FFilament
Created by ChesterS on 9/17/2024 in #❓┊help
Register Filepond Plugin
For now it is only working with spatie media library. In the next update I will add compatibility with native fileupload.
15 replies
FFilament
Created by ChesterS on 9/17/2024 in #❓┊help
Register Filepond Plugin
I don't know if it's what you're looking for
15 replies
FFilament
Created by ChesterS on 9/17/2024 in #❓┊help
Register Filepond Plugin
https://github.com/elmudometal/filament-custom-attribute-file-upload This plugin takes the input in the image and saves it in the name field of the media library space
15 replies
FFilament
Created by ChesterS on 9/17/2024 in #❓┊help
Register Filepond Plugin
I make this component by using the name in the media library
15 replies
FFilament
Created by ChesterS on 9/17/2024 in #❓┊help
Register Filepond Plugin
No description
15 replies
FFilament
Created by ChesterS on 9/17/2024 in #❓┊help
Register Filepond Plugin
what did you want to achieve with this js?
15 replies
FFilament
Created by ChesterS on 9/17/2024 in #❓┊help
Register Filepond Plugin
I was trying to test this way but in the end I ended up making an extended fileupload plugin
15 replies
TLCTuto's Laravel Corner
Created by elmudometal on 11/28/2024 in #💡filament
How can I pre-fill or pre-check records from the table?, is possible?
Thank you very much, I managed to do it through an event
4 replies
FFilament
Created by ChesterS on 9/17/2024 in #❓┊help
Register Filepond Plugin
Hi man, were you able to solve this?
15 replies
FFilament
Created by elmudometal on 1/22/2024 in #❓┊help
I have a problem with HasFileAttachments aws S3
another error in that same file is that StorePublic fails when saving S3 files, it does not generate any errors but it is not stored in the bucket
3 replies
FFilament
Created by elmudometal on 1/2/2024 in #❓┊help
set config(['livewire.temporary_file_upload.disk' => 'local']); to local in one resouce import file
I currently do this: class ListPoints extends ListRecords { protected static string $resource = PointResource::class; protected function getActions(): array { config(['livewire.temporary_file_upload.disk' => 's3']); return [ Actions\CreateAction::make() ->label('Create Point'), ImportAction::make('poits') ->label('Import Points') ->fields([... but it still saves the temp file in s3
3 replies
FFilament
Created by elmudometal on 9/8/2023 in #❓┊help
problem saving pivot table
class OrdenCategoria extends Pivot { protected static function booted(): void { static::creating(function ($ordenCategoria) { if (empty($ordenCategoria->inscripcion_id)) { $ordenCategoria->inscripcion_id = $ordenCategoria?->pivotParent?->inscripcion_id; } }); } }
9 replies
FFilament
Created by elmudometal on 9/8/2023 in #❓┊help
problem saving pivot table
My solution was to create a pivot model and assign the id
9 replies
FFilament
Created by elmudometal on 9/8/2023 in #❓┊help
problem saving pivot table
My idea was to create a registration form and this adds a repeat of orders and in the orders I added the categories (this one as select multiple) but since the registration has not yet been created I do not have the id so when saving everything it fails in this relationship multi foreign
9 replies
FFilament
Created by elmudometal on 9/8/2023 in #❓┊help
problem saving pivot table
The models have all their relationships, I just cut them out because they are very long.
9 replies
FFilament
Created by elmudometal on 9/8/2023 in #❓┊help
problem saving pivot table
It is a registration system where a registration can have many categories but at the same time it has payment order registrations: 1 registration has many categories 1 registration has many payment orders but for example: 1 payment order has 2 categories and another payment order has 1 category This results in: 1 registration with 3 categories All this logic for the user view is created but I can't get it to filament
9 replies