17 lines
309 B
PHP
17 lines
309 B
PHP
|
|
<?php
|
||
|
|
|
||
|
|
namespace App\Models;
|
||
|
|
|
||
|
|
use Illuminate\Database\Eloquent\Factories\HasFactory;
|
||
|
|
use Illuminate\Database\Eloquent\Model;
|
||
|
|
|
||
|
|
class NotificationMaster extends Model
|
||
|
|
{
|
||
|
|
use HasFactory;
|
||
|
|
protected $table = 'notification_masters';
|
||
|
|
protected $fillable = [
|
||
|
|
'title',
|
||
|
|
'messages'
|
||
|
|
];
|
||
|
|
}
|