mirror of
https://github.com/Bigherollc/wticreatorstudio.git
synced 2026-07-31 05:16:49 -04:00
21 lines
390 B
PHP
21 lines
390 B
PHP
<?php
|
|
|
|
namespace Modules\Subscription\Entities;
|
|
|
|
use Illuminate\Database\Eloquent\Model;
|
|
|
|
class PaymentCodeAddon extends Model
|
|
{
|
|
|
|
protected $table = 'payment_code_addons';
|
|
protected $guarded = ['id'];
|
|
|
|
protected $casts = [
|
|
'price' => 'float'
|
|
];
|
|
|
|
public function paymentCode() {
|
|
return $this->belongsTo(PaymentCode::class, 'payment_code_id');
|
|
}
|
|
}
|