Files
OnAPB-Carrere_Demartin/app/Models/Noticia.php
T
Laucha1312 90c5f85512 2
2026-06-04 15:15:23 -03:00

27 lines
447 B
PHP

<?php
namespace App\Models;
use Illuminate\Database\Eloquent\Model;
class Noticia extends Model
{
protected $table = 'noticias';
protected $primaryKey = 'id';
public $timestamps = false;
protected $fillable = [
'titulo',
'contenido',
'imagen',
'fecha',
'id_torneo',
'categoria',
];
protected $casts = [
'id' => 'integer',
'fecha' => 'datetime',
];
}