Lloyd
Lloyd
FFilament
Created by Lloyd on 11/19/2024 in #❓┊help
Filters On Sidebar
No description
2 replies
FFilament
Created by Lloyd on 11/14/2024 in #❓┊help
ApexCharts - Don't Render Section
Hey, this is likely for @LeandroFerreira, I'm wondering how I can just render the chart in Apex, without the section around it? I want to add it to a Fieldset (as I've done for other sections) within my tab - as I'm doing here with a custom view: Is there a way to get around this? As you can see, the styling in the plugin is different from my own. Thanks in advance, and thanks again for creating an awesome plugin! 🔥
5 replies
FFilament
Created by Lloyd on 11/12/2024 in #❓┊help
Global Search Hooks
Hi all, Is there a way to "hook" searches? I want to transform some of the data before it hits the models for searching. As in, the user will be able to write their own query (e.g. `post:"example-post" AND hits:1337)). I'm going to transform that back to SQL using an API call. So I guess the question here is, is there a way to "intercept" searches?
6 replies
FFilament
Created by Lloyd on 10/23/2024 in #❓┊help
Columns\Layout\Stack - Record Spacing
No description
7 replies
FFilament
Created by Lloyd on 10/22/2024 in #❓┊help
Image Postprocessing
Folks, how do I get the path of an uploaded image? (I want to edit this image by sending it to an API, then replace it)
FileUpload::make('image')
->afterStateUpdated(function ($state) {
$path = $state->getPath();
log('state', [$path]);
})
FileUpload::make('image')
->afterStateUpdated(function ($state) {
$path = $state->getPath();
log('state', [$path]);
})
This just returns storage/app/livewire-tmp, and not the actual path of the uploaded image 😦 Thanks in advance! Also, would it be better to do this after the form is submit, then replace it? I'm not sure..
9 replies
FFilament
Created by Lloyd on 10/19/2024 in #❓┊help
Tags Ownership - Multiple With Same Name
Hi folks, what would a model look like for the Spaite laravel-tags (https://github.com/spatie/laravel-tags) look like? I would like tags in which the user is the owner, tag names can be duplicated across the application, and tags have a category. Thanks in advance.
2 replies
FFilament
Created by Lloyd on 10/16/2024 in #❓┊help
Creating UUID (PK) in form
Hi folks, I require the UUID (which is the primary-key of my model, id) to be known before the user submits the form, as this will edit another field. Is there a way I can generate this UUID, set it to a TextInput, then use that as the primary ID? Thanks in advance.
6 replies
FFilament
Created by Lloyd on 10/2/2024 in #❓┊help
Livewire\Exceptions\ComponentNotFoundException: Unable to find component: [filament.pages.auth.regis
All I've done is add ->registration() to my panel provider 🤔
13 replies
FFilament
Created by Lloyd on 10/1/2024 in #❓┊help
ListView Entries As Widget
No description
4 replies
FFilament
Created by Lloyd on 9/23/2024 in #❓┊help
Modal Form Submission - Exit After Submission
Hey folks, is there a way to ensure that the modal doesn't exit when you press "Submit" on the form? I'm wanting to fetch some content via an API, then display it there. Thanks in advance!
8 replies