mirror of
https://github.com/kevin-DL/LaravelShoppingcart.git
synced 2026-01-18 13:35:06 +00:00
12 lines
255 B
PHP
12 lines
255 B
PHP
<?php
|
|
|
|
namespace Gloudemans\Tests\Shoppingcart\Fixtures;
|
|
|
|
use Gloudemans\Shoppingcart\Contracts\Buyable;
|
|
use Illuminate\Database\Eloquent\Model;
|
|
|
|
class BuyableProductTrait extends Model implements Buyable
|
|
{
|
|
use \Gloudemans\Shoppingcart\CanBeBought;
|
|
}
|