Code Coverage |
||||||||||
Lines |
Functions and Methods |
Classes and Traits |
||||||||
| Total | n/a |
0 / 0 |
n/a |
0 / 0 |
CRAP | n/a |
0 / 0 |
|||
| TblBoxWorkG3WMapping | 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 TblBoxWorkG3WMapping extends Model |
| 9 | { |
| 10 | use HasFactory; |
| 11 | protected $table = 'tbl_box_work_g3w_mapping'; |
| 12 | public $timestamps = false; |
| 13 | protected $fillable = ['box_work_g3w', 'work_status', 'verified_attribute', 'closed_attribute', 'created_at', 'updated_at']; |
| 14 | } |