forked from admin/services_core
ticker work proses
This commit is contained in:
@@ -15,5 +15,27 @@ class Ticket extends Model
|
||||
'priority',
|
||||
'status',
|
||||
'created_by',
|
||||
'assigned_at',
|
||||
'approved_by',
|
||||
'approved_at',
|
||||
'rejected_by',
|
||||
'rejected_at',
|
||||
'rejection_reason',
|
||||
'resolved_at',
|
||||
'closed_at',
|
||||
];
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| Relationships
|
||||
|--------------------------------------------------------------------------
|
||||
*/
|
||||
|
||||
public function ticketType()
|
||||
{
|
||||
return $this->belongsTo(
|
||||
TicketType::class,
|
||||
'ticket_type_id'
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user