rabol / laravel-adsense
Display Adsense ads in your Laravel app.
Installs: 1 654
Dependents: 0
Suggesters: 0
Security: 0
Stars: 6
Watchers: 2
Forks: 3
Open Issues: 1
Requires
- php: ^7.2|^7.3|^8.0|^8.1|^8.2|^8.3
This package is auto-updated.
Last update: 2024-11-03 12:31:32 UTC
README
Package for including Adsense Ads in Laravel 5, 6, 7, 8, 9, 10, 11
Installation
In your project root run
composer require rabol/laravel-adsense
Set up config file
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' ] ] ];
Register the package with Laravel
This package is for Laravel 5.5+ so it takes advantage of auto discover, so no manual configuration is needed
Usage
To show ads in your blade templates simply use {!! Adsense::show('responsive') !!}
, for example.