ebrahimimami
ebrahimimami
FFilament
Created by ebrahimimami on 8/24/2024 in #❓┊help
allowing html in option labels of `select` component
I still have this issue 🤕
4 replies
FFilament
Created by Jefry on 8/23/2024 in #❓┊help
Can't login on multiple panels
in case of using the shield plugin, you should assign the panel's related role (cashiers_panel_user) to those users you want to be allowed to login to cashiers panel.
5 replies
FFilament
Created by Jefry on 8/23/2024 in #❓┊help
Can't login on multiple panels
Did you use the Shield plugin or any other kind of permissions checking in your project?
5 replies
FFilament
Created by mounirammi on 6/28/2024 in #❓┊help
Import CSV inside a resource page to save exported data to a relationship table.
As mentioned in official document, the built-in Import feature of Filament, only supports BelongTo relationships. https://filamentphp.com/docs/3.x/actions/prebuilt-actions/import#importing-relationships Since your relationship from Order to ProductItem is HasMany which is noy supported, but fortunately you have the chance to swim against the river's stream 🤓. Tip: Instead of importing Orders first, Import Order Items first 😉 You can define your importer for ProductionItems, and define some columns with order relationship of ProductItem model, which is a BelongsTo relationship.
2 replies