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 | |
| 3 | namespace App\Models; |
| 4 | |
| 5 | use Illuminate\Database\Eloquent\Factories\HasFactory; |
| 6 | use Illuminate\Database\Eloquent\Model; |
| 7 | |
| 8 | class TblLastFollowUpDate extends Model |
| 9 | { |
| 10 | use HasFactory; |
| 11 | protected $table = 'tbl_last_follow_up_date'; |
| 12 | public $timestamps = false; |
| 13 | protected $fillable = [ |
| 14 | 'company_id', |
| 15 | 'row_id', |
| 16 | 'budget_type_id', |
| 17 | 'last_follow_up_date', |
| 18 | 'created_by', |
| 19 | 'created_at', |
| 20 | 'updated_by', |
| 21 | 'updated_at' |
| 22 | ]; |
| 23 | } |