BusinessCategory.php 396 B

123456789101112131415161718192021222324
  1. <?php
  2. namespace App\Repositories\Models\Dwbs;
  3. use App\Repositories\Models\Model;
  4. class BusinessCategory extends Model
  5. {
  6. /**
  7. * @var string
  8. */
  9. protected $table = 'dwbs_business_category';
  10. protected $guarded = [];
  11. /**
  12. * The attributes excluded from the model's JSON form.
  13. *
  14. * @var array
  15. */
  16. protected $hidden = [];
  17. protected $casts = [];
  18. }