60 lines
1.4 KiB
PHP
60 lines
1.4 KiB
PHP
<?php
|
|
|
|
namespace App\Modules\SberPaymentOrder\Models;
|
|
|
|
use Illuminate\Database\Eloquent\Model;
|
|
use Illuminate\Database\Eloquent\Relations\BelongsTo;
|
|
use Spatie\MediaLibrary\HasMedia;
|
|
use Spatie\MediaLibrary\InteractsWithMedia;
|
|
|
|
/**
|
|
* @property int $id
|
|
* @property int $sber_payment_order_id
|
|
* @property int $online_payment_history_id
|
|
* @property ?string $payer_name
|
|
* @property ?string $payer_card
|
|
* @property ?string $payment_order_number
|
|
* @property string $tmt_payment_amount
|
|
* @property string $usd_payment_amount
|
|
* @property bool $paid
|
|
* @property bool $synced_with_system
|
|
* @property \Illuminate\Support\Carbon $created_at
|
|
* @property \Illuminate\Support\Carbon $updated_at
|
|
*/
|
|
class SberPaymentOrderItem extends Model implements HasMedia
|
|
{
|
|
use InteractsWithMedia;
|
|
|
|
/**
|
|
* Table
|
|
*
|
|
* @var string
|
|
*/
|
|
protected $table = 'sber_payment_order_items';
|
|
|
|
/**
|
|
* Guarded attributes
|
|
*/
|
|
protected $guarded = [];
|
|
|
|
/**
|
|
* The attributes that should be cast.
|
|
*
|
|
* @var array<string, string>
|
|
*/
|
|
protected $casts = [
|
|
'paid' => 'boolean',
|
|
'synced_with_system' => 'boolean',
|
|
];
|
|
|
|
/**
|
|
* Parent order
|
|
*
|
|
* @return BelongsTo<SberPaymentOrder, SberPaymentOrderItem>
|
|
*/
|
|
public function parent(): BelongsTo
|
|
{
|
|
return $this->belongsTo(SberPaymentOrder::class, 'sber_payment_order_id');
|
|
}
|
|
}
|