xy
xy
FFilament
Created by xy on 10/27/2023 in #❓┊help
Simple file upload field
or just a button with file name label next to it? rather than drag/drop and preview
7 replies
FFilament
Created by xy on 10/27/2023 in #❓┊help
Simple file upload field
No description
7 replies
FFilament
Created by Oumaima on 8/26/2023 in #❓┊help
Image Carrousel
Since Alpine is bundled in, use that instead: https://codesandbox.io/s/tailwind-alpine-js-carousel-ibrvzc
25 replies
FFilament
Created by Albert Lens on 9/4/2023 in #❓┊help
createOptionForm is not saving the created record
#✅┊rules please format your post so its more readable Also you're using createOptionUsing wrong. It expects a closure (which is what the Laravel error is telling you). Example:
->createOptionUsing(function ($data) {
$post = new Post();
$post->fill($data);
$post->save();
return $post->id;
})
->createOptionUsing(function ($data) {
$post = new Post();
$post->fill($data);
$post->save();
return $post->id;
})
5 replies
FFilament
Created by xy on 9/2/2023 in #❓┊help
Action button - copy to clipboard
bump
3 replies
FFilament
Created by Jan0bra on 9/1/2023 in #❓┊help
Disable System Theme from Theme Switcher
I assume because of upstream changes (changes in the main package that will not accurately reflect if you publish views)
10 replies
FFilament
Created by xy on 8/31/2023 in #❓┊help
SpatieMediaLibraryFileUpload: Display original file name
bump
8 replies
FFilament
Created by Jan0bra on 9/1/2023 in #❓┊help
Disable System Theme from Theme Switcher
But isn't the system theme enabled by default?
10 replies
FFilament
Created by xy on 8/31/2023 in #❓┊help
SpatieMediaLibraryFileUpload: Display original file name
The method name is preserveFilenames, however it didn't resolve my issue
8 replies
FFilament
Created by xy on 8/31/2023 in #❓┊help
SpatieMediaLibraryFileUpload: Display original file name
that didn't work
8 replies
FFilament
Created by jouni.i on 8/31/2023 in #❓┊help
Resource list page emptyStateActions action
Most likely its because you haven't commented out the 'create' route under getPages in your main resource. Like so:
public static function getPages(): array
{
return [
'index' => Pages\ListPosts::route('/'),
// 'create' => Pages\CreatePosts::route('/create'),
'edit' => Pages\EditPosts::route('/{record}/edit'),
];
}
public static function getPages(): array
{
return [
'index' => Pages\ListPosts::route('/'),
// 'create' => Pages\CreatePosts::route('/create'),
'edit' => Pages\EditPosts::route('/{record}/edit'),
];
}
6 replies
FFilament
Created by jouni.i on 8/31/2023 in #❓┊help
Resource list page emptyStateActions action
Share your code
6 replies
FFilament
Created by justgkp on 8/30/2023 in #❓┊help
403 Forbidden! Access to this resource on the server is denied!
also canAccessTenant and canAccessPanel in your user model
4 replies
FFilament
Created by justgkp on 8/30/2023 in #❓┊help
403 Forbidden! Access to this resource on the server is denied!
check policies
4 replies
FFilament
Created by xy on 8/29/2023 in #❓┊help
Custom form field - Check if state has a value?
Not sure why the above wasn't working so just ended up using $set
8 replies
FFilament
Created by xy on 8/29/2023 in #❓┊help
Disable relationmanager tabs
In between 2 sections in $form
22 replies
FFilament
Created by xy on 8/29/2023 in #❓┊help
Disable relationmanager tabs
Is there a way to also add the relation manager in the middle of the edit form rather than at the end?
22 replies
FFilament
Created by xy on 8/29/2023 in #❓┊help
Disable relationmanager tabs
Yes, this worked, thanks!
22 replies
FFilament
Created by xy on 8/29/2023 in #❓┊help
Disable relationmanager tabs
The method in the main resource is the same
22 replies