This package is a convenient helper for using the laravel-seo package with Filament Admin and Forms , please check it for more information about how to set up the SEO logic in your project.
It provides a simple component that returns a Filament field group for any language you want to modify the title, description, keywords, follow type fields of the SEO model.
It automatically takes care of getting and saving all the data to the seo relationship, and you can thus use it anywhere, without additional configuration!
You can install the package via composer:
composer require 34ml/filament-seo
You need to publish the config file where you can specify the languages you want to use:
php artisan vendor:publish --tag="filament-seo-config"
The config file will look like this:
<?php return [ 'locales' => [ //Add your locales here 'en', 'ar', 'fr', ],];
You need also to publish the migration file to create the seo table from the laravel-seo package:
php artisan vendor:publish --tag="seo-migrations"php artisan migrate
use _34ml\SEO\SEOField;Â public static function form(Form $form): Form{ return $form->schema([ ...SEOField::make(), // Your other fields ]);}
use _34ml\SEO\SEOField;Â public static function form(Form $form): Form{ return $form->schema([ ...SEOField::make( callbacks: function() { return $this->collapsible(), } ), // Your other fields ]);}
The MIT License (MIT). Please see License File for more information.
34ML (https://34ml.com) a software company based in Egypt, We connect businesses and users through innovative mobile apps, built with user experience, performance, and security in mind. Our expertise in AI, machine learning, VR, and AR allows us to create truly transformative experiences.