mirror of
https://github.com/lkddi/nexusphp.git
synced 2026-04-08 17:20:51 +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'
|
|
];
|
|
}
|