mirror of
https://github.com/lkddi/nexusphp.git
synced 2026-05-15 12:37:34 +08:00
14 lines
220 B
PHP
14 lines
220 B
PHP
|
|
<?php
|
||
|
|
|
||
|
|
namespace App\Models;
|
||
|
|
|
||
|
|
|
||
|
|
use App\Models\Traits\NexusActivityLogTrait;
|
||
|
|
|
||
|
|
class RegImage extends NexusModel
|
||
|
|
{
|
||
|
|
protected $table = 'regimages';
|
||
|
|
|
||
|
|
protected $fillable = ['imagehash', 'imagestring', 'dateline'];
|
||
|
|
}
|