All Projects → spotonlive → laravel-facebook-ads

spotonlive / laravel-facebook-ads

Licence: MIT license
Facebook integration for Laravel

Programming Languages

PHP
23972 projects - #3 most used programming language
Blade
752 projects

Projects that are alternatives of or similar to laravel-facebook-ads

FB-Ads-Opt-UCB
The easiest way to optimize Facebook Ads using Upper Confidence Bound Algorithm. 💻
Stars: ✭ 23 (+21.05%)
Mutual labels:  facebook, facebook-ads
facebook-ruby-ads-sdk
The Facebook Marketing API in Ruby.
Stars: ✭ 59 (+210.53%)
Mutual labels:  facebook, facebook-ads
Facebook Political Ads
Monitoring Facebook Political Ads
Stars: ✭ 215 (+1031.58%)
Mutual labels:  facebook
Hackathon Starter Kit
A Node-Typescript/Express Boilerplate with Authentication(Local, Github, Facebook, Twitter, Google, Dropbox, LinkedIn, Discord, Slack), Authorization, and CRUD functionality + PWA Support!
Stars: ✭ 242 (+1173.68%)
Mutual labels:  facebook
Spring Security Pac4j
pac4j security library for Spring Security: OAuth, CAS, SAML, OpenID Connect, LDAP, JWT...
Stars: ✭ 231 (+1115.79%)
Mutual labels:  facebook
Facebookimagepicker
FacebookImagePicker is Facebook album photo picker written in Swift.
Stars: ✭ 220 (+1057.89%)
Mutual labels:  facebook
Facebook Sdk
Python SDK for Facebook's Graph API
Stars: ✭ 2,626 (+13721.05%)
Mutual labels:  facebook
Ngx Avatar
Universal avatar component for angular 2+ applications makes it possible to fetch / generate avatar from different sources
Stars: ✭ 210 (+1005.26%)
Mutual labels:  facebook
GodotFAN
Facebook Audience Network Ad module for godot
Stars: ✭ 25 (+31.58%)
Mutual labels:  facebook-ads
Facebooktoolkit
a tool to get Facebook data, and some Facebook bots, and extra tools found on Facebook Toolkit ++.
Stars: ✭ 227 (+1094.74%)
Mutual labels:  facebook
Reaper
Social media scraping / data collection tool for the Facebook, Twitter, Reddit, YouTube, Pinterest, and Tumblr APIs
Stars: ✭ 240 (+1163.16%)
Mutual labels:  facebook
Miscord
Facebook Messenger to Discord bridge
Stars: ✭ 225 (+1084.21%)
Mutual labels:  facebook
React Messenger Customer Chat
React component for messenger customer chat plugin
Stars: ✭ 221 (+1063.16%)
Mutual labels:  facebook
Rhplaceholder
Show pleasant loading view for your users 😍
Stars: ✭ 238 (+1152.63%)
Mutual labels:  facebook
All In One Customized Adblock List
An all-in-one adblock list that thoroughly blocks trackers, popup ads, ads, unwanted cookies, fake news, cookie warning messages, typosquatters, unwanted comment sections, crypto-coin mining, YouTube clutter, Twitter guff and social network hassles.
Stars: ✭ 217 (+1042.11%)
Mutual labels:  facebook
Swiftybot
How to create a Telegram, Facebook Messenger, and Google Assistant bot with Swift using Vapor on Ubuntu / macOS.
Stars: ✭ 247 (+1200%)
Mutual labels:  facebook
Hackers Tool Kit
Its a framework filled with alot of options and hacking tools you use directly in the script from brute forcing to payload making im still adding more stuff i now have another tool out called htkl-lite its hackers-tool-kit just not as big and messy to see updates check on my instagram @tuf_unkn0wn or if there are any problems message me on instagram
Stars: ✭ 211 (+1010.53%)
Mutual labels:  facebook
Flexml
🚀基于Litho的Android高性能动态业务容器。
Stars: ✭ 225 (+1084.21%)
Mutual labels:  facebook
Pow assent
Multi-provider authentication for your Pow enabled app
Stars: ✭ 236 (+1142.11%)
Mutual labels:  facebook
gaixinhchonloc
Nơi chia sẻ những bức ảnh đã lưu
Stars: ✭ 38 (+100%)
Mutual labels:  facebook

Laravel 5.3 Latest Stable Version Total Downloads Latest Unstable Version License Build Status Code Climate Test Coverage

Facebook Ads API for Laravel 5.*

This package is an integration of facebook/facebook-php-ads-sdk in Laravel 5.*.

Composer

  • Run $ composer require spotonlive/laravel-facebook-ads

Examples

Client

<?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(),
        ]);
    }
}

Credits

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].