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
Since tags are translatable (we use [`spatie/laravel-translatable`](https://spatie.be/docs/laravel-translatable/v6/introduction) for this) you can also pass a locale to the SeoCard.
131
130
132
-
E.g. if you work with our [Translatable Tabs](https://github.com/codedor/filament-translatable-tabs) package:
131
+
E.g. if you work with our [Translatable Tabs](https://github.com/wotzebra/filament-translatable-tabs) package:
133
132
134
133
```php
135
134
public static function form(Form $form): Form
@@ -151,17 +150,17 @@ public static function form(Form $form): Form
151
150
}
152
151
```
153
152
154
-
Next to that you also have to add the `\Codedor\Seo\Filament\Traits\SavesSeoFields` trait to your Create and Edit Page for this resource.
153
+
Next to that you also have to add the `\Wotz\Seo\Filament\Traits\SavesSeoFields` trait to your Create and Edit Page for this resource.
155
154
We need this since we have to modify the state before saving it.
156
155
157
156
### Routes
158
157
159
-
To make your routes pop up in the Seo Routes module in Filament, you have to attach the `\Codedor\Seo\Http\Middleware\SeoMiddleware` middleware.
158
+
To make your routes pop up in the Seo Routes module in Filament, you have to attach the `\Wotz\Seo\Http\Middleware\SeoMiddleware` middleware.
0 commit comments