'datetime', ]; } public function ticket(): BelongsTo { return $this->belongsTo(Ticket::class, 'ticket_id'); } public function fromQueue(): BelongsTo { return $this->belongsTo(ServiceQueue::class, 'from_service_queue_id'); } public function toQueue(): BelongsTo { return $this->belongsTo(ServiceQueue::class, 'to_service_queue_id'); } public function fromCounter(): BelongsTo { return $this->belongsTo(Counter::class, 'from_counter_id'); } }