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