fagner
fagner
FFilament
Created by fagner on 10/25/2024 in #❓┊help
Error on upload multiple files on livewire page component inside infolist.
No description
11 replies
FFilament
Created by fagner on 10/25/2024 in #❓┊help
Error on upload multiple files on livewire page component inside infolist.
When I upload only one file, it works, but when I add two or more files at once, the modal closes unexpectedly.
11 replies
FFilament
Created by fagner on 10/25/2024 in #❓┊help
Error on upload multiple files on livewire page component inside infolist.
No description
11 replies
FFilament
Created by fagner on 10/25/2024 in #❓┊help
Error on upload multiple files on livewire page component inside infolist.
hey man, I messed up when creating the post on discord, sorry
11 replies
FFilament
Created by fagner on 10/25/2024 in #❓┊help
Error on upload multiple files on livewire page component inside infolist.
i try upload multiple files but show me errors on console livewire and hide modal.
public function form(Form $form): Form
{
return $form
->schema([
TextInput::make('situacao')
->autocomplete(false)
->required(),
Textarea::make('observacao'),
FileUpload::make('anexos.path')
->label('Anexos')
->multiple()
->panelLayout('compact')
->disk('do')
->storeFileNamesIn('anexos.nome')
->directory('demandas')
->visibility('public'),
]);
}
public function form(Form $form): Form
{
return $form
->schema([
TextInput::make('situacao')
->autocomplete(false)
->required(),
Textarea::make('observacao'),
FileUpload::make('anexos.path')
->label('Anexos')
->multiple()
->panelLayout('compact')
->disk('do')
->storeFileNamesIn('anexos.nome')
->directory('demandas')
->visibility('public'),
]);
}
livewire show console error: Uncaught TypeError: Cannot read properties of undefined (reading 'after')
11 replies
FFilament
Created by Atena.D on 4/2/2023 in #❓┊help
How to show results of an API in custom page table builder.
im using filament v3
33 replies
FFilament
Created by Atena.D on 4/2/2023 in #❓┊help
How to show results of an API in custom page table builder.
@benzo Did you succeed in sending the resource pagination to the model? I'm trying to do this here in the resource and I'm not succeeding. I wanted to try a method that updates the query every time the pagination changes
33 replies
FFilament
Created by chrispage1 on 2/8/2024 in #❓┊help
Accessing (parent?) data using <x-filament::button
Hey man, you resolve this ? i have the same problem
4 replies
FFilament
Created by bearer on 4/22/2024 in #❓┊help
How to export table with enum column?
Hi i had the same problem and i solved it this way:
protected $casts = [
'status' => DoacaoStatusPagamento::class
];

protected $appends = [
'new_status'
];

public function getNewStatusAttribute(): string
{
return $this->status->getLabel();
}
protected $casts = [
'status' => DoacaoStatusPagamento::class
];

protected $appends = [
'new_status'
];

public function getNewStatusAttribute(): string
{
return $this->status->getLabel();
}
``
11 replies
FFilament
Created by Skrypt on 7/31/2023 in #❓┊help
filament v3: file upload on custom page
updateProperty
7 replies
FFilament
Created by wagnerfnds on 1/27/2024 in #❓┊help
Strange URL behavior with modals, the URL changes when interact with modal
Hello everyone, I'm having the same problem, has anyone seen a solution for this?
12 replies
FFilament
Created by Igor on 1/8/2024 in #❓┊help
any idea for improving file pond loading?
now refreshing page to look this behavior
4 replies
FFilament
Created by Igor on 1/8/2024 in #❓┊help
any idea for improving file pond loading?
No description
4 replies