Maxwell Mezadre
Maxwell Mezadre
FFilament
Created by mile4841 on 8/16/2024 in #❓┊help
How to reorder the navigation
Hi, have you defined the navigation sort on the other resources/pages?
7 replies
FFilament
Created by Maxwell Mezadre on 6/19/2024 in #❓┊help
Error 404 in Laravel Pulse, Telescope and Horizon
# Filament Provider

class AppPanelProvider extends PanelProvider
{
public function panel(Panel $panel): Panel
{
return $panel
->id('app')
->spa()
->profile()
->default()
->path('/')
->login(Login::class)
->routes(fn (): RouteRegistrar => Route::prefix('debug'))
# Filament Provider

class AppPanelProvider extends PanelProvider
{
public function panel(Panel $panel): Panel
{
return $panel
->id('app')
->spa()
->profile()
->default()
->path('/')
->login(Login::class)
->routes(fn (): RouteRegistrar => Route::prefix('debug'))
# Environment

HORIZON_PATH=debug/horizon
PULSE_PATH=debug/pulse
# Environment

HORIZON_PATH=debug/horizon
PULSE_PATH=debug/pulse
13 replies
FFilament
Created by Maxwell Mezadre on 6/19/2024 in #❓┊help
Error 404 in Laravel Pulse, Telescope and Horizon
->navigationItems([
NavigationItem::make()
->label('Pulse')
->url('/pulse')
])
->navigationItems([
NavigationItem::make()
->label('Pulse')
->url('/pulse')
])
13 replies
FFilament
Created by Maxwell Mezadre on 6/19/2024 in #❓┊help
Error 404 in Laravel Pulse, Telescope and Horizon
I created a navigation item and it still shows a 404 error
13 replies
FFilament
Created by Maxwell Mezadre on 6/19/2024 in #❓┊help
Error 404 in Laravel Pulse, Telescope and Horizon
I think so too, but I didn't find it and nowhere how to make it work 😦
13 replies
FFilament
Created by Maxwell Mezadre on 6/19/2024 in #❓┊help
Error 404 in Laravel Pulse, Telescope and Horizon
No description
13 replies
FFilament
Created by Maxwell Mezadre on 6/19/2024 in #❓┊help
Error 404 in Laravel Pulse, Telescope and Horizon
Yes
13 replies
FFilament
Created by Maxwell Mezadre on 6/19/2024 in #❓┊help
Error 404 in Laravel Pulse, Telescope and Horizon
Yes
13 replies
FFilament
Created by Maxwell Mezadre on 2/23/2024 in #❓┊help
Multi Nested Relation not work in edit
No description
4 replies
FFilament
Created by Maxwell Mezadre on 2/23/2024 in #❓┊help
Multi Nested Relation not work in edit
No description
4 replies
FFilament
Created by Maxwell Mezadre on 2/23/2024 in #❓┊help
Multi Nested Relation not work in edit
Model ER
4 replies
FFilament
Created by Pablo Torres on 12/6/2023 in #❓┊help
Browser does not refresh on file save (Docker)
I'm using

Laravel 10
Sail
Docker
Valet (with proxy to localhost:8080 and secure)

And I added this to my AppPanelProvider.php:

public function register(): void
{
parent::register();

FilamentView::registerRenderHook('panels::body.end', function (): string {
return Blade::render("@vite(['resources/js/app.js', 'resources/css/app.css'])");
});
}

And I added this to my AppServiceProvider:

public function boot(): void
{
FilamentView::registerRenderHook('panels::head.end', fn (): string => Blade::render('@vite ( [\'resources/css/app.css\',\'resources/js/app .js\'])'));
}

And it still doesn't refresh :(
I'm using

Laravel 10
Sail
Docker
Valet (with proxy to localhost:8080 and secure)

And I added this to my AppPanelProvider.php:

public function register(): void
{
parent::register();

FilamentView::registerRenderHook('panels::body.end', function (): string {
return Blade::render("@vite(['resources/js/app.js', 'resources/css/app.css'])");
});
}

And I added this to my AppServiceProvider:

public function boot(): void
{
FilamentView::registerRenderHook('panels::head.end', fn (): string => Blade::render('@vite ( [\'resources/css/app.css\',\'resources/js/app .js\'])'));
}

And it still doesn't refresh :(
3 replies