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    protected $table = 'tbl_itv';
12    public $timestamps = false;
13    protected $fillable = [
14        'region', 
15        'company_id', 
16        'brand', 
17        'model',
18        'vehicle_type',
19        'license_plate',
20        'registration_date',
21        'mileage',
22        'last_itv_date',
23        'next_itv_date',
24        'mileage_threshold',
25        'driver',
26        'responsible_name',
27        'responsible_email',
28        'created_by',
29        'created_at',
30        'updated_by',
31        'updated_at',
32        'is_due',
33        'is_due_mileage',
34        'comments',
35        'appointment_date',
36        'appointment_time',
37        'location',
38        'is_booked',
39        'is_due_appointment'
40    ];
41}