PHP code example of bndwgn / laravel-bandwagon

1. Go to this page and download the library: Download bndwgn/laravel-bandwagon library. Choose the download type require.

2. Extract the ZIP file and open the index.php.

3. Add this code to the index.php.
    
        
<?php
require_once('vendor/autoload.php');

/* Start to develop here. Best regards https://php-download.com/ */

    

bndwgn / laravel-bandwagon example snippets


// App/Http/Controllers/PurchaseController.php 
use Bndwgn\Bandwagon\Bandwagon;

public function purchase(Request $request, Product $product)
{
    $user = Auth::user(); 
    // ... logic to charge a customer
    Bandwagon::createEvent(
        "Someone from ${$user->state}",
        "Purchased the ${$product->displayName} plan",
        $request->ip(),
        route('purchase', $product->id)
    ); 
}
 
sh
php artisan vendor:publish --provider="Bndwgn\Bandwagon\BandwagonServiceProvider"