123456789101112131415161718192021222324 |
- <?php
- namespace App\Shop\Dummies;
- class Dummy extends Model
- {
- /**
- * The attributes that are mass assignable.
- *
- * @var array
- */
- protected $fillable = [
- //
- ];
- /**
- * The attributes that should be hidden for arrays.
- *
- * @var array
- */
- protected $hidden = [
- //
- ];
- }
|