| Current Path : /var/www/html/xfacil.desafio.com.py/app/Http/Livewire/ |
| Current File : /var/www/html/xfacil.desafio.com.py/app/Http/Livewire/Notificacion.php |
<?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',
];
}