Files
expense/app/Models/Notifications.php
T
2025-01-17 16:17:53 +07:00

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'
];
}