<?php namespace App\Models; use Illuminate\Database\Eloquent\Factories\HasFactory; use Illuminate\Database\Eloquent\Model; class Notificacion extends Model{ use HasFactory; protected $table='notifications'; protected $primaryKey='id'; public $timestamps='true'; protected $fillable=[ 'type', 'notifiable', 'data', 'read_at', ]; }