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