This package is an integration of facebook/facebook-php-ads-sdk
in Laravel.
You can install the package via composer:
composer require spotonlive/laravel-facebook-ads`
You can publish the config file with:
php artisan vendor:publish --provider="palPalani\LaravelFacebookAds\LaravelFacebookAdsServiceProvider" --tag="laravel-facebook-ads-config"
<?php
namespace App\Http\Controllers;
use LaravelFacebook\Clients\Facebook;
class AdsController
{
/** @var Facebook */
protected $facebookClient;
public function __construct(Facebook $facebookClient)
{
$this->facebookClient = $facebookClient;
}
/**
* Show ads
*
* @return \Illuminate\Contracts\View\Factory|\Illuminate\View\View
*/
public function ads()
{
$client = $this->facebookClient;
$accountId = 'act_12345678';
return view('ads', [
'ads' => $client->account($accountId)->ads(),
]);
}
}
composer test
Please see CHANGELOG for more information on what has changed recently.
Please see CONTRIBUTING for details.
Please review our security policy on how to report security vulnerabilities.
The MIT License (MIT). Please see License File for more information.