'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'); } }