Code Coverage
 
Lines
Functions and Methods
Classes and Traits
Total
n/a
0 / 0
n/a
0 / 0
CRAP
n/a
0 / 0
TblInvoicesNextReminders
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 TblInvoicesNextReminders extends Model
9{
10    use HasFactory;
11
12    protected $table = 'tbl_invoice_next_reminders';
13
14    protected $primaryKey = 'id';
15
16    protected $fillable = [
17        'invoice_number',
18        'next_reminders',
19        'region',
20        'id_client',
21        'payment_day'
22    ];
23}