PHP code example of lee-to / laravel-seo-by-url

1. Go to this page and download the library: Download lee-to/laravel-seo-by-url library. Choose the download type require.

2. Extract the ZIP file and open the index.php.

3. Add this code to the index.php.
    
        
<?php
require_once('vendor/autoload.php');

/* Start to develop here. Best regards https://php-download.com/ */

    

lee-to / laravel-seo-by-url example snippets


use Leeto\Seo\Seo;

// ...

Seo::title('Hello world')

seo()->title('Hello world')

use Leeto\Seo\SeoManager;

// ...

public function __invoke(SeoManager $seo)
{
    //
}

seo()->title('Im page title')

seo()->title('Im page title', true)

seo()->description('Im page description')
seo()->keywords('Im page description')
seo()->text('Im page description')
seo()->og(['image' => 'link to image'])

seo()->meta()->title()
seo()->meta()->description()
seo()->meta()->keywords()
seo()->meta()->text()
seo()->meta()->og()

seo()->meta()->html()

use Leeto\Seo\Models\Seo;

Seo::create([
    'url' => '/',
    'title' => 'Im title'
]);

return [
    'default' => [
        'title' => 'Im title'
    ]
]);

class HandleInertiaRequests extends Middleware
{
    //
    public function share(Request $request)
    {
        return array_merge(parent::share($request), [
            // ...

            'seo' => [
                'title' => seo()->meta()->title(),
                'description' => seo()->meta()->description(),
                'keywords' => seo()->meta()->keywords(),
                'og' => seo()->meta()->og(),
                'text' => seo()->meta()->text(),
            ]
        ]);
    }
    //
}
shell
php artisan vendor:publish --provider="Leeto\Seo\Providers\SeoServiceProvider"
shell
php artisan migrate
shell
php artisan seo:moonshine