Code Coverage
 
Lines
Functions and Methods
Classes and Traits
Total
n/a
0 / 0
n/a
0 / 0
CRAP
n/a
0 / 0
TblQuotationsLog
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 TblQuotationsLog extends Model
9{
10    use HasFactory;
11
12    protected $table = 'tbl_quotations_log';
13
14    protected $primaryKey = 'id';
15
16    protected $fillable = [
17        'category',
18        'quotation_id',
19        'user',
20        'field',
21        'old_value',
22        'new_value',
23        'updated_at',
24        'created_at',
25    ];
26}