<?php

namespace App\Models\Notification;

use Illuminate\Database\Eloquent\Model;

class Notification_Bell extends Model
{
    //
    protected $table      = 'notifications_bell';
    protected $primaryKey = 'id';
    protected $fillable = ['notification_label','detailed_text','notification_icon','role_id','user_id','link_url','read_flag','archive_flag','web_flag','sms_flag','email_flag','valid_from','valid_to','updated_by'];

    protected $dates = [
							'created_at', 'updated_at'
					   ];
}
