pace
pace
FFilament
Created by pace on 10/8/2024 in #❓┊help
It's possible change the "default title" for all tabs?
No description
3 replies
FFilament
Created by pace on 8/19/2024 in #❓┊help
How to enforce ->viteTheme to use https?
worked for me thanks
10 replies
FFilament
Created by pace on 8/19/2024 in #❓┊help
How to enforce ->viteTheme to use https?
I will try thanks
10 replies
FFilament
Created by pace on 8/19/2024 in #❓┊help
How to enforce ->viteTheme to use https?
There isn't, should there be?
10 replies
FFilament
Created by pace on 8/19/2024 in #❓┊help
How to enforce ->viteTheme to use https?
and my APP_ENV=production
10 replies
FFilament
Created by pace on 8/19/2024 in #❓┊help
How to enforce ->viteTheme to use https?
My APP_URL: https://hml.s..... and my AppServiceProvider:
public function boot(): void
{
if (env('APP_ENV') === 'production' || env('APP_ENV') === 'staging'){
$this->app['request']->server->set('HTTPS', true);
}
}
public function boot(): void
{
if (env('APP_ENV') === 'production' || env('APP_ENV') === 'staging'){
$this->app['request']->server->set('HTTPS', true);
}
}
10 replies
FFilament
Created by pace on 3/20/2024 in #❓┊help
Trying to test a form but error: Attempt to read property "form" on null
I forgot to authenticate the user before access the form. $user = User::factory()->create(); // because i am using spatie package $user->assignRole('super_admin'); $this->actingAs($user);
3 replies