Code Coverage
 
Lines
Functions and Methods
Classes and Traits
Total
n/a
0 / 0
n/a
0 / 0
CRAP
n/a
0 / 0
TblLeave
n/a
0 / 0
n/a
0 / 0
0
n/a
0 / 0
1<?php
2
3namespace App\Models;
4
5use Illuminate\Database\Eloquent\Factories\HasFactory;
6use Illuminate\Database\Eloquent\Model;
7
8class TblLeave extends Model
9{
10    use HasFactory;
11
12    protected $table = 'tbl_leave';
13
14    public $timestamps = false;
15
16    protected $fillable = [
17        'date_of_receipt',
18        'company_id',
19        'branch',
20        'freshdesk_ticket_id',
21        'freshdesk_ticket_link',
22        'gestiona_customer_id',
23        'customer_name',
24        'customer_email',
25        'customer_telephone_number',
26        'existing_teams',
27        'reason_for_cancellation',
28        'reason_details',
29        'change_of_maintenance_provider',
30        'action',
31        'customer_recovery',
32        'comment',
33        'private_comment',
34        'comment_for_administration',
35        'created_by',
36        'updated_by',
37        'created_at',
38        'updated_at',
39    ];
40}