martinbutt/laravel-adsense 问题修复 & 功能扩展

解决BUG、新增功能、兼容多环境部署,快速响应你的开发需求

邮箱:yvsm@zunyunkeji.com | QQ:316430983 | 微信:yvsm316

martinbutt/laravel-adsense

最新稳定版本:v2.0.1

Composer 安装命令:

composer require martinbutt/laravel-adsense

包简介

Display Adsense ads easily in Laravel 6.x, 7.x and 8.x

README 文档

README

Latest Version Total Downloads Build Status StyleCI Scrutinizer Code Coverage License

Package for easily including Google Adsense Ad units in Laravel 6.x, 7.x and 8.x and Lumen. For use with Laravel 5.x use original Mastergalen/Adsense-Ads package.

Installation

1 - Dependency

In your project root run

The first step is using Composer to install the package and automatically update your composer.json file, you can do this by running:

composer require martinbutt/laravel-adsense

2 - Set up config file

Run php artisan config:publish martinbutt/laravel-adsense.

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_slot' => 1111111111,
            'ad_format' => 'fluid',
            'ad_full_width_responsive' => true,
            'ad_style' => 'display:inline-block'
        ],
        'rectangle' => [
            'ad_slot' => 2222222222,
            'ad_style' => 'display:inline-block;width:300px;height:250px',
            'ad_full_width_responsive' => false,
            'ad_format' => 'auto'
        ]
    ]
];

3 - Register the provider with Laravel

You need to update your application configuration in order to register the package so it can be loaded by Laravel, just update your config/app.php file adding the following code at the end of your 'providers' section:

config/app.php

<?php

return [
    // ...
    'providers' => [
        MartinButt\Laravel\Adsense\Providers\AdsenseServiceProvider::class,
        // ...
    ],
    // ...
];

Lumen

Go to bootstrap/app.php file and add this line:

<?php
// ...

$app = new Laravel\Lumen\Application(
    dirname(__DIR__)
);

// ...

$app->register(MartinButt\Laravel\Adsense\Providers\AdsenseServiceProvider::class);

// ...

return $app;

4 - Register the alias with Laravel

Note: facades are not supported in Lumen.

You may get access to the Google Adsense Ads services using following facades:

  • MartinButt\Laravel\Adsense\Facades\AdsenseFacade

You can setup a short-version aliases for these facades in your config/app.php file. For example:

<?php

return [
    // ...
    'aliases' => [
        'Adsense' => MartinButt\Laravel\Adsense\Facades\AdsenseFacade::class,
        // ...
    ],
    // ...
];

5 - Configuration

Publish config

In your terminal type

php artisan vendor:publish

or

php artisan vendor:publish --provider="MartinButt\Laravel\Adsense\Providers\AdsenseServiceProvider"

Lumen does not support this command, for it you should copy the file src/resources/config/adsense.php to config/adsense.php of your project.

In adsense.php configuration file you can determine the properties of the default values and some behaviors.

Usage

Add {!! Adsense::javascript() !!} in your <head> tag.

To show ads, add {!! Adsense::ads('ads_unit') !!}, where ads_unit is one of your ads units in your config file (for example {!! Adsense::ads('responsive') !!}).

Use {!! Adsense::ads('ads_unit') !!} every time you want to show an ad.

Changelog

Please see the CHANGELOG.md file for more information on what has changed recently.

Credits

License

The Google Adsense Ads is open-sourced software licensed under the MIT license.
Please see the LICENSE.md file for more information.

统计信息

  • 总下载量: 1.01k
  • 月度下载量: 0
  • 日度下载量: 0
  • 收藏数: 10
  • 点击次数: 0
  • 依赖项目数: 0
  • 推荐数: 0

GitHub 信息

  • Stars: 10
  • Watchers: 0
  • Forks: 16
  • 开发语言: PHP

其他信息

  • 授权协议: MIT
  • 更新时间: 2021-04-22

承接程序开发

PHP开发

VUE

Vue开发

前端开发

小程序开发

公众号开发

系统定制

数据库设计

云部署

网站建设

安全加固