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
12    protected $table = 'tbl_roles';
13
14    public $timestamps = false;
15
16    protected $fillable = [
17        'name',
18        'issue_objective_year',
19        'issue_objective_month',
20        'issue_objective_week',
21        'acceptance_objective_year',
22        'acceptance_objective_month',
23        'acceptance_objective_week',
24        'rejected_objective_year',
25        'rejected_objective_month',
26        'rejected_objective_week',
27        'new_objective_year',
28        'new_objective_month',
29        'new_objective_week',
30        'created_by',
31        'updated_by',
32        'updated_at',
33    ];
34}