Code Coverage
 
Lines
Functions and Methods
Classes and Traits
Total
n/a
0 / 0
n/a
0 / 0
CRAP
n/a
0 / 0
TblRoles
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 TblRoles extends Model
9{
10    use HasFactory;
11    protected $table = 'tbl_roles';
12    public $timestamps = false;
13    protected $fillable = [
14        'name', 
15        'issue_objective_year', 
16        'issue_objective_month', 
17        'issue_objective_week', 
18        'acceptance_objective_year', 
19        'acceptance_objective_month', 
20        'acceptance_objective_week', 
21        'rejected_objective_year', 
22        'rejected_objective_month',
23        'rejected_objective_week',
24        'new_objective_year', 
25        'new_objective_month', 
26        'new_objective_week', 
27        'created_by', 
28        'updated_by', 
29        'updated_at'
30    ];
31}