Nicole
Nicole
FFilament
Created by Nicole on 4/30/2025 in #❓┊help
SpatieMediaLibraryFileUpload gets images from a third-party AP.
Mate, in case you're still trying to figure it out, maybe this one can help you https://silvanhagen.com/writing/background-file-upload-in-filament-forms/
12 replies
FFilament
Created by Nicole on 4/30/2025 in #❓┊help
SpatieMediaLibraryFileUpload gets images from a third-party AP.
I am not sure how this actually work, but I heard of Livewire\TemporaryUploadedFile; Not sure if that's something I can use.
12 replies
FFilament
Created by Nicole on 4/30/2025 in #❓┊help
SpatieMediaLibraryFileUpload gets images from a third-party AP.
12 replies
FFilament
Created by Nicole on 4/30/2025 in #❓┊help
SpatieMediaLibraryFileUpload gets images from a third-party AP.
No description
12 replies
FFilament
Created by Nicole on 4/30/2025 in #❓┊help
SpatieMediaLibraryFileUpload gets images from a third-party AP.
What is your workaround so far @Daniel Heinze ?
12 replies
FFilament
Created by Nicole on 4/29/2025 in #❓┊help
Autocomplete Input Form Field
Thank you!
5 replies
FFilament
Created by Nicole on 4/29/2025 in #❓┊help
Autocomplete Input Form Field
This is different from a select because I want to be able to input custom text as well.
5 replies
FFilament
Created by Nicole on 4/27/2025 in #❓┊help
SpatieMediaLibraryFileUpload Uploaded Images Grid
Thank you!
5 replies
FFilament
Created by Nicole on 4/24/2025 in #❓┊help
Custom Component Within Resource.
Thank you so much toeknee
22 replies
FFilament
Created by Nicole on 4/24/2025 in #❓┊help
Custom Component Within Resource.
I can't find it in docs
22 replies
FFilament
Created by Nicole on 4/24/2025 in #❓┊help
Custom Component Within Resource.
Is there a map field?
22 replies
FFilament
Created by Nicole on 4/24/2025 in #❓┊help
Custom Component Within Resource.
Based on latitude and longitude
22 replies
FFilament
Created by Nicole on 4/24/2025 in #❓┊help
Custom Component Within Resource.
I just need a map to show the location in a map so lightweight map will work.
22 replies
FFilament
Created by Nicole on 4/24/2025 in #❓┊help
Custom Component Within Resource.
22 replies
FFilament
Created by Nicole on 4/24/2025 in #❓┊help
Custom Component Within Resource.
Oh, got it. Thanks!
22 replies
FFilament
Created by Nicole on 4/24/2025 in #❓┊help
Custom Component Within Resource.
This is what I found so maybe you have other guides https://laraveldaily.com/post/filament-add-custom-action-button-inside-form
22 replies
FFilament
Created by Nicole on 4/24/2025 in #❓┊help
Custom Component Within Resource.
No description
22 replies
FFilament
Created by Nicole on 4/24/2025 in #❓┊help
Custom Component Within Resource.
Is it possible to add a button to the middle of the create form that, when clicked, sends a request to an external API and fills other form fields based on the response?
22 replies
FFilament
Created by Nicole on 4/24/2025 in #❓┊help
Lightweight map plugin
I have latitude and longitude fields in my form, and I just want a simple map to visually represent their location.
4 replies
FFilament
Created by Nicole on 4/24/2025 in #❓┊help
Custom Component Within Resource.
public static function form(Form $form): Form
{
return $form
->schema([
Forms\Components\TextInput::make('name')
->required()
->maxLength(255)
->live(onBlur: true)
->afterStateUpdated(fn (string $operation, $state, Forms\Set $set) => $operation === 'create' ? $set('slug', Str::slug($state)) : null),

Forms\Components\TextInput::make('slug')
->disabled()
->dehydrated()
->required()
->maxLength(255)
->unique(Category::class, 'slug', ignoreRecord: true),

Forms\Components\MarkdownEditor::make('description')
->columnSpan('full'),

Forms\Components\Toggle::make('is_visible')
->label('Visible to customers.')
->default(true),
]);
}
public static function form(Form $form): Form
{
return $form
->schema([
Forms\Components\TextInput::make('name')
->required()
->maxLength(255)
->live(onBlur: true)
->afterStateUpdated(fn (string $operation, $state, Forms\Set $set) => $operation === 'create' ? $set('slug', Str::slug($state)) : null),

Forms\Components\TextInput::make('slug')
->disabled()
->dehydrated()
->required()
->maxLength(255)
->unique(Category::class, 'slug', ignoreRecord: true),

Forms\Components\MarkdownEditor::make('description')
->columnSpan('full'),

Forms\Components\Toggle::make('is_visible')
->label('Visible to customers.')
->default(true),
]);
}
22 replies