<?php

namespace App\Models\Notification;

use Illuminate\Database\Eloquent\Model;

class Notifications extends Model
{
    //
    protected $table      = 'notifications';
    protected $primaryKey = 'id';
    protected $fillable = ['type','notifiable_type','notifiable_id ','data','read_at'];

    protected $casts = [
        'id' => 'string'
    ];
}
