You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+10Lines changed: 10 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -66,9 +66,19 @@ Add the routes to your `web.php` file:
66
66
```php
67
67
use Vormkracht10\FilamentMails\Facades\FilamentMails;
68
68
69
+
// Basic usage - uses default Filament panel path and name
69
70
FilamentMails::routes();
71
+
72
+
// Prefix routes with path and/or name
73
+
FilamentMails::routes(
74
+
path: 'panel-path',
75
+
name: 'filament.panel'
76
+
);
70
77
```
71
78
79
+
> [!NOTE]
80
+
> By default, the path will be set to your Filament panel's path and the name will be 'filament.' followed by your panel's ID. You only need to customize these if you want different values.
0 commit comments