You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

29 lines
548 B

  1. <?php
  2. declare (strict_types=1);
  3. namespace App\Model\v3;
  4. use App\Model\Model;
  5. class ServicePersonnel extends Model
  6. {
  7. /**
  8. * The table associated with the model.
  9. *
  10. * @var string
  11. */
  12. protected $table = 'lanzu_service_personnel';
  13. /**
  14. * The attributes that are mass assignable.
  15. *
  16. * @var array
  17. */
  18. protected $fillable = [];
  19. /**
  20. * The attributes that should be cast to native types.
  21. *
  22. * @var array
  23. */
  24. // protected $casts = [
  25. // 'set_reward' => 'array'
  26. // ];
  27. }