Code Coverage
 
Lines
Functions and Methods
Classes and Traits
Total
n/a
0 / 0
n/a
0 / 0
CRAP
n/a
0 / 0
TblItv
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 TblItv extends Model
9{
10    use HasFactory;
11
12    protected $table = 'tbl_itv';
13
14    public $timestamps = false;
15
16    protected $fillable = [
17        'region',
18        'company_id',
19        'brand',
20        'model',
21        'vehicle_type',
22        'license_plate',
23        'registration_date',
24        'mileage',
25        'last_itv_date',
26        'next_itv_date',
27        'mileage_threshold',
28        'driver',
29        'responsible_name',
30        'responsible_email',
31        'created_by',
32        'created_at',
33        'updated_by',
34        'updated_at',
35        'is_due',
36        'is_due_mileage',
37        'comments',
38        'appointment_date',
39        'appointment_time',
40        'location',
41        'is_booked',
42        'is_due_appointment',
43    ];
44}