MINI MINI MANI MO

Path : /var/www/html/sistemas/spid/app/Models/
File Upload :
Current File : /var/www/html/sistemas/spid/app/Models/temasVotos.php

<?php

namespace App\Models;

use Illuminate\Database\Eloquent\Factories\HasFactory;
use Illuminate\Database\Eloquent\Model;

class temasVotos extends Model
{
    protected $table="temas_votos";
    protected $guarded = ["id","created_at","updated_at","deleted_at"];

    public function votos()
    {
        return $this->hasMany( mensajesVotos::class, 'id_votacion');
    }
}

OHA YOOOO