• File: NotificationManager.php
  • Full Path: /var/www/sandbox/app/NotificationManager.php
  • Date Modified: 04/15/2024 8:53 PM
  • File size: 226 bytes
  • MIME-type: text/x-php
  • Charset: utf-8
<?php

namespace App;

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

class NotificationManager extends Model
{
    use HasFactory;

    protected $fillable = ['service_id'];
}