2022-07-30 15:06:51 +08:00
|
|
|
<?php
|
|
|
|
|
|
|
|
|
|
namespace App\Models;
|
|
|
|
|
|
|
|
|
|
|
2025-10-12 03:48:04 +07:00
|
|
|
use App\Models\Traits\NexusActivityLogTrait;
|
|
|
|
|
|
2022-07-30 15:06:51 +08:00
|
|
|
class Isp extends NexusModel
|
|
|
|
|
{
|
2025-10-12 03:48:04 +07:00
|
|
|
use NexusActivityLogTrait;
|
|
|
|
|
|
2022-07-30 15:06:51 +08:00
|
|
|
protected $table = 'isp';
|
|
|
|
|
|
|
|
|
|
protected $fillable = ['name'];
|
|
|
|
|
}
|