PHP code example of netbums / laravel-subscription-preset

1. Go to this page and download the library: Download netbums/laravel-subscription-preset 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/ */

    

netbums / laravel-subscription-preset example snippets


use App\Models\Plan;

Plan::query()->create([
    'title' => 'Pro - $99 / month',
    'slug' => 'monthly',
    'stripe_id' => 'price_XXXXXXXXXXXXX'
]);
Plan::query()->create([
    'title' => 'Pro - $999 / year',
    'slug' => 'yearly',
    'stripe_id' => 'price_XXXXXXXXXXXXX'
]);

@if(auth()->user()->subscribed())

@can('cancel', auth()->user()->subscription())
@can('resume', auth()->user()->subscription())
bash
php artisan laravel-subscription-preset