123456789101112131415161718192021222324 |
- <?php
- namespace App\Repositories\Models\Dwbs;
- use App\Repositories\Models\Model;
- class BusinessCategory extends Model
- {
- /**
- * @var string
- */
- protected $table = 'dwbs_business_category';
- protected $guarded = [];
- /**
- * The attributes excluded from the model's JSON form.
- *
- * @var array
- */
- protected $hidden = [];
- protected $casts = [];
- }
|