<?php
namespace App\Models;
use Illuminate\Database\Eloquent\Model;
class NotificationType extends Model
{
protected $table = 'notification_types';
protected $fillable = [
'name',
'user_type',
'default_preference',
'mandatory',
];
}