PHP code example of woren951 / meta-tags
1. Go to this page and download the library: Download woren951/meta-tags 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/ */
woren951 / meta-tags example snippets
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() !!}