Files

23 lines
386 B
PHP
Raw Permalink Normal View History

2025-01-17 16:17:53 +07:00
<?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',
2025-01-23 17:46:38 +07:00
'expense_type',
'expense_id',
2025-01-17 16:17:53 +07:00
'created_at',
'updated_at'
];
}