Meta.php 566 B

12345678910111213141516171819202122232425262728293031323334
  1. <?php
  2. namespace App\Models;
  3. use Illuminate\Database\Eloquent\Model;
  4. /**
  5. * Class Meta
  6. *
  7. * @property $id
  8. * @property $metas
  9. * @property $descripcion
  10. * @property $fecha_meta
  11. * @property $status
  12. * @property $created_at
  13. * @property $updated_at
  14. *
  15. * @package App
  16. * @mixin \Illuminate\Database\Eloquent\Builder
  17. */
  18. class Meta extends Model
  19. {
  20. protected $perPage = 20;
  21. /**
  22. * The attributes that are mass assignable.
  23. *
  24. * @var array<int, string>
  25. */
  26. protected $fillable = ['metas', 'descripcion', 'fecha_meta', 'status'];
  27. }