LaborReport.php 325 B

123456789101112
  1. <?php
  2. namespace App;
  3. use Illuminate\Database\Eloquent\Model;
  4. class LaborReport extends Model
  5. {
  6. protected $fillable=[
  7. 'id','enter_number','user_workgroup_id','user_id','name','mobile_phone','identity_number','labor_company','check_in_at','verify_at','check_out_at','online_duration','working_duration'
  8. ];
  9. }