Metatags
A Laravel package to fetch all metadata of a webpage.
Installation
Perform the following operations in order to use this package
-
Run
composer require "mobiosolutions/metatags"in your terminal -
Add Service Provider Open
config/app.phpand addmobiosolutions\metatags\Providers\MetatagsProvider::class,to the end ofprovidersarray:'providers' => array( .... mobiosolutions\metatags\Providers\MetatagsProvider::class, ),Next under the
aliasesarray:'aliases' => array( .... 'Metatags' => mobiosolutions\metatags\Facades\MetatagsFacade::class ),
Requirements
- You need to install the DOM extension.
How to use
-
After following the above steps,
// Add to your controller to get all metatags data use Metatags; $metadata = Metatags::get("https://example.com/"); print_r($metadata);Get only OG ( Open Graph ) Metatages data
$getOGTags = true; $metadata = Metatags::get("https://example.com/",$getOGTags); OR $metadata = Metatags::get("https://example.com/",true); print_r($metadata);