PHP code example of tomatophp / filament-ecommerce
1. Go to this page and download the library: Download tomatophp/filament-ecommerce 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/ */
use \TomatoPHP\FilamentEcommerce\Facades\FilamentEcommerce;
FilamentEcommerce::coupon()->check('coupon_code', \TomatoPHP\FilamentEcommerce\Models\Order::find(1));
use \TomatoPHP\FilamentEcommerce\Facades\FilamentEcommerce;
FilamentEcommerce::coupon()->products([1,2,4])->check('coupon_code');
use \TomatoPHP\FilamentEcommerce\Facades\FilamentEcommerce;
FilamentEcommerce::coupon()->products([1,2,4])->discount('coupon_code');
use Illuminate\Foundation\Auth\User as Authenticatable;
use Spatie\Permission\Traits\HasRoles;
class User extends Authenticatable
{
use HasRoles;
// ...
}