Group.php 221 B

123456789101112131415161718
  1. <?php
  2. namespace App;
  3. use Illuminate\Database\Eloquent\Model;
  4. class Group extends Model
  5. {
  6. protected $fillable = [
  7. 'category_id',
  8. 'name',
  9. 'position',
  10. 'image',
  11. 'url'
  12. ];
  13. }