Code Coverage |
||||||||||
Lines |
Functions and Methods |
Classes and Traits |
||||||||
| Total | n/a |
0 / 0 |
n/a |
0 / 0 |
CRAP | n/a |
0 / 0 |
|||
| TblFinanceReportRecipients | 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\Model; |
| 6 | |
| 7 | class TblFinanceReportRecipients extends Model |
| 8 | { |
| 9 | protected $table = 'tbl_finance_report_recipients'; |
| 10 | |
| 11 | public $timestamps = true; |
| 12 | |
| 13 | protected $fillable = [ |
| 14 | 'company_id', 'name', 'email', 'is_active', 'days_before_delete_errors', |
| 15 | ]; |
| 16 | } |