Code Coverage
 
Lines
Functions and Methods
Classes and Traits
Total
n/a
0 / 0
n/a
0 / 0
CRAP
n/a
0 / 0
TblLastFollowUpDate
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 TblLastFollowUpDate extends Model
9{
10    use HasFactory;
11
12    protected $table = 'tbl_last_follow_up_date';
13
14    public $timestamps = false;
15
16    protected $fillable = [
17        'company_id',
18        'row_id',
19        'budget_type_id',
20        'last_follow_up_date',
21        'created_by',
22        'created_at',
23        'updated_by',
24        'updated_at',
25    ];
26}