PHP code example of moirei / laravel-vouchers
1. Go to this page and download the library: Download moirei/laravel-vouchers 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/ */
moirei / laravel-vouchers example snippets
$product = Product::find(1);
$voucher = $product->createVoucher();
$user->redeem($voucher);
bash
php artisan vendor:publish --tag="vouchers-migrations"
bash
php artisan migrate
bash
php artisan vendor:publish --tag="vouchers-config"