DummyModel.stub 339 B

123456789101112131415161718192021222324
  1. <?php
  2. namespace App\Shop\Dummies;
  3. class Dummy extends Model
  4. {
  5. /**
  6. * The attributes that are mass assignable.
  7. *
  8. * @var array
  9. */
  10. protected $fillable = [
  11. //
  12. ];
  13. /**
  14. * The attributes that should be hidden for arrays.
  15. *
  16. * @var array
  17. */
  18. protected $hidden = [
  19. //
  20. ];
  21. }