How to define panel route
How can I define panel route, I want to pass it like
/posts/{slug}
with route name
Solution:Jump to solution
Oh, I though my below code is wrong, but it's working..
```php
->routes(function () {
return Route::get('posts/{slug}', \App\Filament\App\Pages\PostDetail::class)->name('post');
})...
1 Reply
Solution
Oh, I though my below code is wrong, but it's working..
I saw it on
route:list