Jyrki
Jyrki
FFilament
Created by Remi Hindriks on 3/26/2024 in #❓┊help
using @livewireScriptConfig instead of @filamentScripts
I fixed it by loading my plugin like (should also work for a custom directive), so ignoring the Livewire docs
import sort from '@alpinejs/sort'

document.addEventListener('alpine:init', () => {
window.Alpine.plugin(sort)
})
import sort from '@alpinejs/sort'

document.addEventListener('alpine:init', () => {
window.Alpine.plugin(sort)
})
And with this in my blade file
@filamentScripts
@vite(['resources/js/app.js'])
@filamentScripts
@vite(['resources/js/app.js'])
3 replies
FFilament
Created by slamx_ on 5/24/2024 in #❓┊help
Fileupload Bug view
Also happens with just a checkbox or text input
4 replies
FFilament
Created by QuantumBen on 1/2/2024 in #❓┊help
Help: How do i use different Model (Admin) instead of using FilamentPHP default Model (User)
You define your Admin model in the new guard, see https://stackoverflow.com/a/40994838 as an example
8 replies
FFilament
Created by Alnuaimi on 1/2/2024 in #❓┊help
How to send Notification into email in filamentphp By smtp?
8 replies
FFilament
Created by QuantumBen on 1/2/2024 in #❓┊help
Help: How do i use different Model (Admin) instead of using FilamentPHP default Model (User)
8 replies
FFilament
Created by Alnuaimi on 1/2/2024 in #❓┊help
How to send Notification into email in filamentphp By smtp?
You don't need the filament notifications for this, use the Laravel one https://laravel.com/docs/10.x/notifications#mail-notifications
8 replies
FFilament
Created by MuhamDaily on 12/14/2023 in #❓┊help
Custom Column Filament
It's not really filament related, more Laravel. You can also try the sum method on your column https://filamentphp.com/docs/3.x/tables/columns/relationships#aggregating-relationships
16 replies
FFilament
Created by MuhamDaily on 12/14/2023 in #❓┊help
Custom Column Filament
But you have a hasmany relationship. So you cannot fetch just 1 item for the order
16 replies
FFilament
Created by MuhamDaily on 12/14/2023 in #❓┊help
Custom Column Filament
It's because you are in the order resource. So you'll have to change OrderItem to Order and then loop through all order items to calculate the sum
16 replies
FFilament
Created by Np on 12/6/2023 in #❓┊help
custom action button can be used in multiple places
22 replies
FFilament
Created by Stormageddon, Dark Lord of All on 11/20/2023 in #❓┊help
Where can I find the main <head> tag in my filamentapp
8 replies
FFilament
Created by Jyrki on 4/17/2023 in #❓┊help
Testing TextInputColumn
I had a trick for v2 https://v2.filamentphp.com/tricks/test-an-editable-field, but did not need it yet for v3. So no idea if it will work
8 replies
FFilament
Created by ianclemence on 11/14/2023 in #❓┊help
Unable to access filament
Check that you are on the latest versions, because it seems you are on an older Laravel version
9 replies
FFilament
Created by Alex on 11/9/2023 in #❓┊help
How do I display the count on a tab badge
3 replies
FFilament
Created by Wannes on 11/10/2023 in #❓┊help
Switching default locale
Filament user the app locale, so you can set it to nl in your AdminPanelProvider app()->setLocale('nl')
4 replies
FFilament
Created by jay02k on 11/2/2023 in #❓┊help
how to move navigation menu to user menu if not possible how to disable the group menu
But on first sight you can't hide the navigation, only disable the resources SkyPlugin::make() ->hasPostResource() and then you can overwrite the resource in your own app to configure it
10 replies
FFilament
Created by jay02k on 11/2/2023 in #❓┊help
how to move navigation menu to user menu if not possible how to disable the group menu
Ask for help in the package channel #sky-cms
10 replies
FFilament
Created by jay02k on 11/2/2023 in #❓┊help
how to move navigation menu to user menu if not possible how to disable the group menu
10 replies
FFilament
Created by VIIKKK on 10/18/2023 in #❓┊help
translatable compatible?
I tried to set up a fresh app yesterday and for me it worked with following the documentation. So something must be wrong, make sure you added the Translatable trait on your resource and pages (every page has a different trait)
8 replies
FFilament
Created by VIIKKK on 10/18/2023 in #❓┊help
translatable compatible?
Did you follow every step in the docs https://filamentphp.com/plugins/filament-spatie-translatable? Where do you set the locales?
8 replies