Bruno Pereira
Bruno Pereira
FFilament
Created by Usurious on 3/29/2025 in #❓┊help
In Form Builder - Relation is failing to save. Presents SQL error.
glad I could help
17 replies
FFilament
Created by Usurious on 3/29/2025 in #❓┊help
In Form Builder - Relation is failing to save. Presents SQL error.
User model has many trips you use hasMany ($this->hasMany(Trip::class)) Trip belongs to a User you use belongsTo ($this->belongsTo(User::class,'host_id'))
17 replies
FFilament
Created by Usurious on 3/29/2025 in #❓┊help
In Form Builder - Relation is failing to save. Presents SQL error.
it can be host_id, user_id. And in the the relation function in the model, you put 'host_id' instead of 'id'
17 replies
FFilament
Created by Usurious on 3/29/2025 in #❓┊help
In Form Builder - Relation is failing to save. Presents SQL error.
hasOne() is used in a one to one relation.
17 replies
FFilament
Created by Usurious on 3/29/2025 in #❓┊help
In Form Builder - Relation is failing to save. Presents SQL error.
The trip table must have user_id foreign key, thats how you relate them. Check this https://laravel.com/docs/12.x/eloquent-relationships#one-to-many
17 replies
FFilament
Created by justhammin on 3/28/2025 in #❓┊help
Is there a way to remove the theme switcher and just have dark mode?
@if (filament()->hasDarkMode() && (! filament()->hasDarkModeForced()))
<x-filament::dropdown.list>
<x-filament-panels::theme-switcher />
</x-filament::dropdown.list>
@endif
@if (filament()->hasDarkMode() && (! filament()->hasDarkModeForced()))
<x-filament::dropdown.list>
<x-filament-panels::theme-switcher />
</x-filament::dropdown.list>
@endif
10 replies
FFilament
Created by justhammin on 3/28/2025 in #❓┊help
Is there a way to remove the theme switcher and just have dark mode?
if you force darkmode, the theme switcher will not show, according to the view in the repo
10 replies
FFilament
Created by justhammin on 3/28/2025 in #❓┊help
Is there a way to remove the theme switcher and just have dark mode?
public function darkMode(bool $condition = true, bool $isForced = false): static
{
$this->hasDarkMode = $condition;
$this->hasDarkModeForced = $isForced;
public function darkMode(bool $condition = true, bool $isForced = false): static
{
$this->hasDarkMode = $condition;
$this->hasDarkModeForced = $isForced;
Second param is to force darkmode, so darkmode(true,true)
10 replies
FFilament
Created by zerre on 3/27/2025 in #❓┊help
Tenancy Cors error
the "." must be in it, because to accept all subdomains from the APP_URL
6 replies
FFilament
Created by zerre on 3/27/2025 in #❓┊help
Tenancy Cors error
Is it a different domain or a subdomain from the app_url? I normally fix those problems with a SESSION_DOMAIN=.${APP_DOMAIN} and APP_DOMAIN="examp.test" (values adapted to your case) in the .env file
6 replies
FFilament
Created by justhammin on 3/27/2025 in #❓┊help
How to persist localeSwitcher
8 replies
FFilament
Created by Petsoukos on 3/27/2025 in #❓┊help
tailwind config missing
I always forget that composer run dev exists so I normally use npm run dev and npm run build xD
30 replies
FFilament
Created by Petsoukos on 3/27/2025 in #❓┊help
tailwind config missing
but you can use npm run dev
30 replies
FFilament
Created by Petsoukos on 3/27/2025 in #❓┊help
tailwind config missing
composer run dev only works with the root tailwind.config (I think)
30 replies
FFilament
Created by Petsoukos on 3/27/2025 in #❓┊help
tailwind config missing
after you create the theme you can just do:
.filament-sidebar-item > a {
@apply bg-gradient-to-r from-rose-400 via-fuchsia-500 to-indigo-500 rounded-none hover:rotate-3
}

.filament-tables-row:nth-child(odd){
@apply bg-gray-50
}
.filament-sidebar-item > a {
@apply bg-gradient-to-r from-rose-400 via-fuchsia-500 to-indigo-500 rounded-none hover:rotate-3
}

.filament-tables-row:nth-child(odd){
@apply bg-gray-50
}
30 replies
FFilament
Created by Petsoukos on 3/27/2025 in #❓┊help
tailwind config missing
trust me, you'll have more freedom to use other tailwind classes without problems
30 replies
FFilament
Created by Petsoukos on 3/27/2025 in #❓┊help
tailwind config missing
yeah xD
30 replies
FFilament
Created by justhammin on 3/27/2025 in #❓┊help
How to persist localeSwitcher
thats because the plugin changes on the livewire component, once you change to the editUser page, which is another livewire component it has its own locale value
8 replies
FFilament
Created by Petsoukos on 3/27/2025 in #❓┊help
tailwind config missing
I feel the pain, but creating the theme is quite easy and it wont ruin the site
30 replies
FFilament
Created by Petsoukos on 3/27/2025 in #❓┊help
tailwind config missing
for example: If you try to apply the class "bg-cyan-500" on the table row. Without the custom theme it might not work because FIlament might not be using that class in the framework.
30 replies