belongsTo(User::class); } public function items() { return $this->hasMany(OrderItem::class, 'order_id', 'uuid'); } public function packedBy() { return $this->belongsTo(User::class, 'packed_by'); } /** * Check if this is a custom order */ public function isCustomOrder(): bool { return false; // Standard orders are not custom }