developer
developer
FFilament
Created by developer on 6/27/2024 in #❓┊help
SpatieMediaLibrary: how to use responsive ?
No description
2 replies
FFilament
Created by developer on 6/23/2024 in #❓┊help
Table selectColumn how to require confirmation
How to show a confirmation prompt when using https://filamentphp.com/docs/3.x/tables/columns/select
5 replies
FFilament
Created by developer on 6/10/2024 in #❓┊help
spa mode broken after upgrade to v3.2.87
title
4 replies
FFilament
Created by developer on 6/5/2024 in #❓┊help
same model policy: multiple resources
basically im using the same model in multiple resources, issue i have when using policies is that i can't find a way to get the resource is trying to access the policy to apply the correct filter... i'm talking something like this: https://github.com/filamentphp/filament/discussions/7928#discussioncomment-6773578
13 replies
FFilament
Created by developer on 4/10/2024 in #❓┊help
user dropdown broke after update to latest version
now it is full-width somehow I already: npm run build php artisan optimize:clear php artisan filament:clear-cached-components
36 replies
FFilament
Created by developer on 3/12/2024 in #❓┊help
table action to open the relationship manager in a modal?
I have UserResource and I want to have this "edit permissions" action to open the permissions relationship within a modal, is it possible?
7 replies
FFilament
Created by developer on 2/23/2024 in #❓┊help
use images in a Form\Select dropdown
No description
5 replies
FFilament
Created by developer on 2/3/2024 in #❓┊help
[bug] Resource infolist modal not working as expected
Encountered this little bug, where having an Infolist that needs to open in a modal from the Tables\Actions\ViewAction::make()->slideOver() stops working upon setting 'view' => Pages\ViewPost::route('/{record}') in the getPages() of the Resource (it opens as a full-page, not as a modal) ------- The thing is, I need to have both functions active since I would like to be able to open a modal from the Resource itself and also be able to open the infolist in a separate full-page window EDIT: if you want to reproduce this behavior just add the corresponding view or edit page to the getPages() of your resource like this:
public static function getPages(): array
{
return [
'index' => Pages\ListPosts::route('/'),
'view' => Pages\ViewPost::route('/{record}'),
'edit' => Pages\EditPost::route('/{record}/edit')
...
];
}
public static function getPages(): array
{
return [
'index' => Pages\ListPosts::route('/'),
'view' => Pages\ViewPost::route('/{record}'),
'edit' => Pages\EditPost::route('/{record}/edit')
...
];
}
also add the ViewAction action in the table() method of the Resource like this:
->actions([
Tables\Actions\ViewAction::make()->slideOver(), // I like the slideover modal
Tables\Actions\EditAction::make(),
Tables\Actions\DeleteAction::make(),
])
->actions([
Tables\Actions\ViewAction::make()->slideOver(), // I like the slideover modal
Tables\Actions\EditAction::make(),
Tables\Actions\DeleteAction::make(),
])
When the view page is present in the getPages() the modal don't open as a modal but as full-page (at this point I'm just repeating myself sorry) now you may wondering, why don't you just remove the view page from the getPages() then?... because, issue is that by removing the view page, I'll consequently disable the view route, preventing access from other resources: Route [filament.admin.resources.posts.view] not defined.
3 replies
FFilament
Created by developer on 2/1/2024 in #❓┊help
how to add action buttons to slideOver() footer
No description
7 replies
FFilament
Created by developer on 8/27/2023 in #❓┊help
Tabs: Mixing Tables and Forms
I need to create a page using tabs. One tab displays a table, while the other tabs display forms. each form uses different Eloquent models. while reading the docs I notice that Tabs are specific for tables or forms: forms: https://filamentphp.com/docs/3.x/forms/layout/tabs tables: https://filamentphp.com/docs/3.x/panels/resources/listing-records#customizing-the-filter-tab-labels
5 replies
FFilament
Created by developer on 8/11/2023 in #❓┊help
bug: when pressing create button multiple times creates duplicate records
if you press the create button multiple times by accident it creates duplicate records
43 replies
FFilament
Created by developer on 8/9/2023 in #❓┊help
hide Tabs based on condition
I've seen other component with methods hidden() and visible() which are very useful tbh, but the Tab component lacks of this methods, whats the workaround to hide Tabs based on conditions?
5 replies
FFilament
Created by developer on 8/7/2023 in #❓┊help
get query from ListRecords\Tab within Badge() to show the actual count() of filtered query
I'm talking about this: https://filamentphp.com/docs/3.x/panels/resources/listing-records#adding-badges-to-filter-tabs in the example above, this could be quite useful for showing the number of records that pass that filter. I'm using the method modifyQueryUsing() to filter the records for every Tab, but how can I access the query to apply the count() eloquent method to display number of records within the Badge() method without manually writing the query again?
6 replies
FFilament
Created by developer on 8/7/2023 in #❓┊help
Reuse infolist
How can I reuse the same infolist in multiple pages/resources? right now I can't think in a way to do it
4 replies
FFilament
Created by developer on 8/5/2023 in #❓┊help
ImageColumn() set path
How can I set the image path when using ImageColumn() if in the database I only have the image's name stored, not the complete path? ... btw this is an existing laravel project which I'm trying to migrate to filament 🦒
7 replies
FFilament
Created by developer on 8/4/2023 in #❓┊help
login with email and username
I'm trying to rebuild my current laravel app to filament v3, the existing app has the feature where user can login using both email or username and also other verifications I'm kinda lost on how can I achieve this with filament
2 replies
FFilament
Created by developer on 5/5/2023 in #❓┊help
how to translate create form H1 header? #solved
10 replies
FFilament
Created by developer on 5/5/2023 in #❓┊help
is there a package to automate translations for you when some words are missing?
is there a package to automate translations for you when some words are missing? using any external API or something
1 replies