mirror of
https://github.com/lkddi/nexusphp.git
synced 2026-04-03 14:10:57 +08:00
14 lines
204 B
PHP
14 lines
204 B
PHP
<?php
|
|
|
|
namespace App\Models;
|
|
|
|
use Illuminate\Database\Eloquent\Factories\HasFactory;
|
|
use Illuminate\Database\Eloquent\Model;
|
|
|
|
class OverForum extends NexusModel
|
|
{
|
|
protected $table = "overforums";
|
|
|
|
|
|
}
|