Code Coverage |
||||||||||
Lines |
Functions and Methods |
Classes and Traits |
||||||||
| Total | n/a |
0 / 0 |
n/a |
0 / 0 |
CRAP | n/a |
0 / 0 |
|||
| TblBudgetTypes | 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\Factories\HasFactory; |
| 6 | use Illuminate\Database\Eloquent\Model; |
| 7 | |
| 8 | class TblBudgetTypes extends Model |
| 9 | { |
| 10 | use HasFactory; |
| 11 | protected $table = 'tbl_budget_types'; |
| 12 | public $timestamps = false; |
| 13 | protected $fillable = [ |
| 14 | 'name', |
| 15 | 'duration', |
| 16 | 'priority', |
| 17 | 'budget_type_group_id', |
| 18 | 'budget_type_group', |
| 19 | 'color', |
| 20 | 'include', |
| 21 | 'created_by', |
| 22 | 'created_at' |
| 23 | ]; |
| 24 | } |