1
0

ticker work proses

This commit is contained in:
Wian Drs
2026-06-22 13:34:49 +07:00
parent 844b8a0ff0
commit b52e67c428
22 changed files with 1193 additions and 16 deletions
+10 -1
View File
@@ -6,5 +6,14 @@ use Illuminate\Database\Eloquent\Model;
class TicketApproval extends Model
{
//
public $timestamps = false;
protected $fillable = [
'ticket_id',
'approver_id',
'status',
'notes',
'approved_at',
'created_at'
];
}