21 lines
340 B
PHP
21 lines
340 B
PHP
|
|
<?php
|
||
|
|
|
||
|
|
namespace App\Models;
|
||
|
|
|
||
|
|
use Illuminate\Database\Eloquent\Model;
|
||
|
|
|
||
|
|
class Notifications extends Model
|
||
|
|
{
|
||
|
|
protected $table = 'notifications';
|
||
|
|
protected $fillable = [
|
||
|
|
'user_id',
|
||
|
|
'receiver_id',
|
||
|
|
'title',
|
||
|
|
'content',
|
||
|
|
'is_read',
|
||
|
|
'type',
|
||
|
|
'created_at',
|
||
|
|
'updated_at'
|
||
|
|
];
|
||
|
|
}
|