| 12345678910111213141516171819202122232425262728293031323334 |
- <?php
- namespace App\Models;
- use Illuminate\Database\Eloquent\Model;
- /**
- * Class Meta
- *
- * @property $id
- * @property $metas
- * @property $descripcion
- * @property $fecha_meta
- * @property $status
- * @property $created_at
- * @property $updated_at
- *
- * @package App
- * @mixin \Illuminate\Database\Eloquent\Builder
- */
- class Meta extends Model
- {
-
- protected $perPage = 20;
- /**
- * The attributes that are mass assignable.
- *
- * @var array<int, string>
- */
- protected $fillable = ['metas', 'descripcion', 'fecha_meta', 'status'];
- }
|