woren951 / meta-tags
使用PHP生成HTML元标签
1.0.1
2023-09-28 13:50 UTC
Requires
- php: ^7.3|^8.0
This package is auto-updated.
Last update: 2024-09-28 16:15:30 UTC
README
安装
使用文本编辑器将woren951/meta-tags
添加到composer.json
"woren951/meta-tags": "dev-master"
或者通过控制台
composer require woren951/meta-tags
此库需要PHP >=7.3。
简介
示例
app('meta-tags')->title('Page title') ->description('Page description') ->canonical('https://github.com/woren951/meta-tags') ->robots('index,nofollow') ->image('https://picsum.photos/1200/630', 1200, 630, 'image/jpeg');
如下在模板中渲染元标签
{!! app('meta-tags')->render() !!}