53 lines
1.1 KiB
PHP
53 lines
1.1 KiB
PHP
<?php
|
|
|
|
namespace App\Models;
|
|
|
|
use App\Traits\BelongsToCompany;
|
|
use Illuminate\Database\Eloquent\Model;
|
|
use Illuminate\Database\Eloquent\Relations\BelongsTo;
|
|
|
|
class Order extends Model
|
|
{
|
|
use BelongsToCompany;
|
|
|
|
protected $fillable = [
|
|
'order_id',
|
|
'name',
|
|
'email',
|
|
'card_number',
|
|
'card_exp_month',
|
|
'card_exp_year',
|
|
'plan_name',
|
|
'plan_id',
|
|
'price',
|
|
'discount_amount',
|
|
'currency',
|
|
'txn_id',
|
|
'payment_status',
|
|
'payment_type',
|
|
'receipt',
|
|
'created_by',
|
|
];
|
|
|
|
protected $casts = [
|
|
'price' => 'decimal:2',
|
|
'discount_amount' => 'decimal:2',
|
|
'card_exp_month' => 'integer',
|
|
'card_exp_year' => 'integer',
|
|
];
|
|
|
|
public function plan(): BelongsTo
|
|
{
|
|
return $this->belongsTo(Plan::class);
|
|
}
|
|
|
|
public function user(): BelongsTo
|
|
{
|
|
return $this->belongsTo(User::class, 'created_by');
|
|
}
|
|
|
|
public function total_coupon_used()
|
|
{
|
|
return $this->hasOne(UserCoupon::class, 'order_id', 'order_id');
|
|
}
|
|
} |