45 lines
918 B
PHP
45 lines
918 B
PHP
<?php
|
|
|
|
namespace App\Models;
|
|
|
|
use Illuminate\Database\Eloquent\Model;
|
|
use Illuminate\Database\Eloquent\Relations\BelongsTo;
|
|
|
|
class CustomOrderProof extends Model
|
|
{
|
|
protected $fillable = [
|
|
'custom_order_id',
|
|
'file_path',
|
|
'original_filename',
|
|
'file_size',
|
|
'mime_type',
|
|
'notes',
|
|
'uploaded_by',
|
|
'status',
|
|
'rejection_reason',
|
|
'approved_at',
|
|
'rejected_at',
|
|
];
|
|
|
|
protected $casts = [
|
|
'approved_at' => 'datetime',
|
|
'rejected_at' => 'datetime',
|
|
];
|
|
|
|
/**
|
|
* Get the custom order that owns this proof
|
|
*/
|
|
public function customOrder(): BelongsTo
|
|
{
|
|
return $this->belongsTo(CustomOrder::class);
|
|
}
|
|
|
|
/**
|
|
* Get the admin who uploaded this proof
|
|
*/
|
|
public function uploadedByUser(): BelongsTo
|
|
{
|
|
return $this->belongsTo(User::class, 'uploaded_by');
|
|
}
|
|
}
|