lopatin96/laravel-seo

1.0.7 2024-04-08 22:09 UTC

This package is auto-updated.

Last update: 2024-09-08 23:00:09 UTC


README

查看

将SEO组件添加到head部分

<x-laravel-seo::seo />

本地化

发布本地化

php artisan vendor:publish --tag="laravel-seo-lang"

自定义标题和描述

添加自定义标题和描述

<x-laravel-seo::title title="privacy-policy_title" />

// or with params

<x-laravel-seo::title title="terms-of-service_title" :params="['title' => 'Title']" />

// or strict-title (without localization)

<x-laravel-seo::title :strict-title="$post->meta_title ?: $post->title" />

发布

本地化

php artisan vendor:publish --tag="laravel-seo-lang"

视图

php artisan vendor:publish --tag="laravel-seo-views"