FB Pixel Laravel component. You can include it in any Blade files.
uzzairwebstudio/laravel-fb-pixel is a Laravel package for fb pixel laravel component. you can include it in any blade files..
It currently has 1 GitHub stars and 294 downloads on Packagist (latest version v1.3.1).
Install it with composer require uzzairwebstudio/laravel-fb-pixel.
Discover more Laravel packages by uzzairwebstudio
or browse all Laravel packages to compare alternatives.
Last updated
This package offers you FB Pixel script as Laravel 7 component. You can include the component in any Blade files.
Once you installed, you can do stuff like this;
<x-uws-fb-pixel pixel-id="123456789" />
<script>
fbq('track', 'Purchase', {currency: "USD", value: 30.00});
</script>
First and foremost, you need to require the package.
composer require uzzairwebstudio/laravel-fb-pixel
Then, publish the vendor files. This will publish View/Component file and views file into your app.
php artisan vendor:publish --tag="uws-fb-pixel-views"
php artisan vendor:publish --tag="uws-fb-pixel-view-component"
Finally, you can now place the component in your blade file like this and place your FB Pixel ID in pixel-id parameter;
<x-uws-fb-pixel pixel-id="YOUR_FB_PIXEL_ID"/>
The MIT License (MIT).