Package for including Adsense Ads in Laravel 5, 6, 7, 8, 9, 10, 11
In your project root run
composer require rabol/laravel-adsense
Run php artisan vendor:publish
.
Edit the generated config file in /config/adsense.php
to add your ad units
return [
'client_id' => 'YOUR_CLIENT_ID', //Your Adsense client ID e.g. ca-pub-9508939161510421
'ads' => [
'responsive' => [
'ad_unit_id' => 12345678901,
'ad_format' => 'auto'
'ad_full_width_responsive' => true
],
'rectangle' => [
'ad_unit_id' => 1234567890,
'ad_style' => 'display:inline-block;width:300px;height:250px',
'ad_format' => 'auto'
]
]
];
This package is for Laravel 5.5+ so it takes advantage of auto discover, so no manual configuration is needed
To show ads in your blade templates simply use {!! Adsense::show('responsive') !!}
, for example.