1 | <?php |
||
8 | class PaymentCategory extends ChocolateyModel |
||
9 | { |
||
10 | /** |
||
11 | * Disable Timestamps. |
||
12 | * |
||
13 | * @var bool |
||
14 | */ |
||
15 | public $timestamps = false; |
||
16 | |||
17 | /** |
||
18 | * The table associated with the model. |
||
19 | * |
||
20 | * @var string |
||
21 | */ |
||
22 | protected $table = 'chocolatey_shop_payment_categories'; |
||
23 | |||
24 | /** |
||
25 | * Primary Key of the Table. |
||
26 | * |
||
27 | * @var string |
||
28 | */ |
||
29 | protected $primaryKey = 'id'; |
||
30 | |||
31 | /** |
||
32 | * Store an Shop Country. |
||
33 | * |
||
34 | * @param string $paymentName |
||
35 | * |
||
36 | * @return PaymentCategory |
||
37 | */ |
||
38 | public function store(string $paymentName): PaymentCategory |
||
47 | } |
||
48 |