Code Coverage
 
Lines
Functions and Methods
Classes and Traits
Total
n/a
0 / 0
n/a
0 / 0
CRAP
n/a
0 / 0
TblInvoiceReminders
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 TblInvoiceReminders extends Model
9{
10    use HasFactory;
11
12    protected $table = 'tbl_invoice_reminders';
13
14    protected $primaryKey = 'id';
15
16    public $incrementing = false;
17
18    protected $fillable = [
19        'invoice_number',
20        'client_name',
21        'client_email',
22        'cif',
23        'issued_date',
24        'expiration_date',
25        'amount',
26        'collection_date',
27        'send_datetime',
28        'reminder_type',
29        'region',
30        'updated_at',
31        'created_at',
32    ];
33
34}