BOT_Larry
BOT_Larry
FFilament
Created by tarifss on 2/28/2024 in #❓┊help
Two factor auth implement?
invadwe
4 replies
FFilament
Created by Pan on 2/20/2024 in #❓┊help
Images & Barcode not working when web hosted (Hostinger)
Can you make a righ click on the missing image html symbol and klick "open in new tab". And check if the requested url is correct (Or in dev tools network tab...)
16 replies
FFilament
Created by Nathan on 2/22/2024 in #❓┊help
SpatieMediaLibraryFileUpload inside action how to attach to new model
I have something like this working with the default FileUpload: Inside the action:
$record->addMedia(Storage::disk('public')->path($data['attachments']));
// ->toMediaCollection($data['file_usage']); //optional
$record->addMedia(Storage::disk('public')->path($data['attachments']));
// ->toMediaCollection($data['file_usage']); //optional
4 replies
FFilament
Created by BOT_Larry on 2/21/2024 in #❓┊help
Use Action inside a custom field
Here a screenshot from this error. I hit submit on the modal ("Bestätigen") You can see the submit button in the background spinning, but the modal is not submiting.
58 replies
FFilament
Created by BOT_Larry on 2/21/2024 in #❓┊help
Use Action inside a custom field
No description
58 replies
FFilament
Created by BOT_Larry on 2/21/2024 in #❓┊help
Use Action inside a custom field
Thanks i changed it, but it made no difference with my problem
58 replies
FFilament
Created by bearer on 2/8/2024 in #❓┊help
How to build form using some JSON structure?
Here is how you publish filaments own language translations: https://filamentphp.com/docs/3.x/panels/installation#publishing-translations Maybe you can build something like this for yourself? Only a thought...
4 replies
FFilament
Created by BOT_Larry on 2/9/2024 in #❓┊help
open Record URL from $table in new tab
Ah so i have to implement a "open" button 🤔 Not so easy to modify the link for the whole row? (for ->recordUrl())
7 replies
FFilament
Created by BOT_Larry on 2/9/2024 in #❓┊help
open Record URL from $table in new tab
Hm i get
Method Filament\Tables\Table::openUrlInNewTab does not exist.
Method Filament\Tables\Table::openUrlInNewTab does not exist.
I am on filament 3.2.28
7 replies
FFilament
Created by Juan Duarte Molina on 1/25/2024 in #❓┊help
Disable submit button in a Wizard depend on "accept" checkbox
O i saw, ->accepted() also works on a toggle!
Toggle::make('terms_of_service')
->accepted()
Toggle::make('terms_of_service')
->accepted()
7 replies
FFilament
Created by Juan Duarte Molina on 1/25/2024 in #❓┊help
Disable submit button in a Wizard depend on "accept" checkbox
Maybe in the form you can use a Checkbox?
Checkbox::make('terms_of_service')
->accepted()
Checkbox::make('terms_of_service')
->accepted()
from https://filamentphp.com/docs/3.x/forms/fields/checkbox#accepted-validation
7 replies
FFilament
Created by BOT_Larry on 2/8/2024 in #❓┊help
Livewire component in form
yes that works. Thank you!
5 replies