DistributionItem.php 487 B

12345678910111213141516171819202122232425
  1. <?php
  2. namespace App\Models;
  3. use Illuminate\Database\Eloquent\Model;
  4. use Prettus\Repository\Contracts\Transformable;
  5. use Prettus\Repository\Traits\TransformableTrait;
  6. /**
  7. * Class DistributionItem.
  8. *
  9. * @package namespace App\Models;
  10. */
  11. class DistributionItem extends Model implements Transformable
  12. {
  13. use TransformableTrait;
  14. /**
  15. * The attributes that are mass assignable.
  16. *
  17. * @var array
  18. */
  19. protected $guarded = ['id', 'updated_at', 'created_at'];
  20. }