<?php
namespace App\Models;
use Illuminate\Database\Eloquent\Model;
class UserNotificationPreference extends Model
{
protected $fillable = [
'user_id',
'notification_type_id',
'allow',
];
public function setAllow($on = 1)
{
$this->allow = $on;
$this->save();
}
}