49 lines
1.2 KiB
PHP
49 lines
1.2 KiB
PHP
<?php
|
|
/**
|
|
* Rma.php
|
|
*
|
|
* @copyright 2022 beikeshop.com - All Rights Reserved
|
|
* @link https://beikeshop.com
|
|
* @author TL <mengwb@guangda.work>
|
|
* @created 2022-08-01 20:22:18
|
|
* @modified 2022-08-01 20:22:18
|
|
*/
|
|
|
|
namespace Beike\Models;
|
|
|
|
use Illuminate\Database\Eloquent\Factories\HasFactory;
|
|
use Illuminate\Database\Eloquent\Relations\BelongsTo;
|
|
use Illuminate\Database\Eloquent\Relations\HasMany;
|
|
|
|
class Rma extends Base
|
|
{
|
|
use HasFactory;
|
|
|
|
protected $fillable = ['order_id', 'order_product_id', 'customer_id', 'name', 'email', 'telephone', 'product_name', 'sku', 'quantity', 'opened', 'rma_reason_id', 'type', 'status', 'comment'];
|
|
|
|
public function order(): BelongsTo
|
|
{
|
|
return $this->belongsTo(Order::class);
|
|
}
|
|
|
|
public function orderProduct(): BelongsTo
|
|
{
|
|
return $this->belongsTo(OrderProduct::class);
|
|
}
|
|
|
|
public function customer(): BelongsTo
|
|
{
|
|
return $this->belongsTo(Customer::class);
|
|
}
|
|
|
|
public function reason(): BelongsTo
|
|
{
|
|
return $this->belongsTo(RmaReason::class, 'rma_reason_id', 'id');
|
|
}
|
|
|
|
public function histories(): HasMany
|
|
{
|
|
return $this->hasMany(RmaHistory::class);
|
|
}
|
|
}
|