mirror of
https://github.com/lkddi/nexusphp.git
synced 2026-04-16 14:00:56 +08:00
13 lines
225 B
PHP
13 lines
225 B
PHP
|
|
<?php
|
||
|
|
|
||
|
|
namespace App\Models;
|
||
|
|
|
||
|
|
class Message extends NexusModel
|
||
|
|
{
|
||
|
|
protected $table = 'messages';
|
||
|
|
|
||
|
|
protected $fillable = [
|
||
|
|
'sender', 'receiver', 'added', 'subject', 'msg', 'unread', 'location', 'saved'
|
||
|
|
];
|
||
|
|
}
|