Your IP : 216.73.217.77


Current Path : /home/users/unlimited/www/dabbawali.sizzlingcafe.co.in/app/Models/
Upload File :
Current File : /home/users/unlimited/www/dabbawali.sizzlingcafe.co.in/app/Models/Notification.php

<?php

namespace App\Models;

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

class Notification extends Model
{
    use HasFactory;
    protected $table = "notifications";
    protected $fillable    = ['model_type', 'model_id', 'data', 'read_at'];
    protected $casts = [
        'id'         => 'integer',
        'model_type' => 'string',
        'model_id'   => 'integer',
        'data'       => 'string',
        'read_at'    => 'datetime',
    ];
}