laravel-shop/src/Traits/HasStripeAccount.php

17 lines
404 B
PHP
Raw Normal View History

2025-11-28 09:24:07 +00:00
<?php
namespace Blax\Shop\Traits;
use Blax\Shop\Exceptions\MultiplePurchaseOptions;
use Blax\Shop\Exceptions\NotPurchasable;
use Blax\Shop\Models\CartItem;
use Blax\Shop\Models\Product;
use Blax\Shop\Models\ProductPrice;
use Illuminate\Database\Eloquent\Relations\HasMany;
use Illuminate\Database\Eloquent\Relations\MorphMany;
use Laravel\Cashier\Billable;
trait HasStripeAccount
{
use Billable;
}