2025-05-12 00:19:35 +08:00
|
|
|
<?php
|
|
|
|
|
|
|
|
|
|
namespace App\Models;
|
|
|
|
|
|
|
|
|
|
use App\BaseApp\BaseModel;
|
|
|
|
|
|
2025-05-12 09:04:46 +08:00
|
|
|
class AdminModel extends BaseModel
|
2025-05-12 00:19:35 +08:00
|
|
|
{
|
|
|
|
|
|
2025-05-12 09:04:46 +08:00
|
|
|
protected $table = 'admin';
|
2025-05-12 00:19:35 +08:00
|
|
|
/**
|
|
|
|
|
* The attributes that are mass assignable.
|
|
|
|
|
*
|
|
|
|
|
* @var list<string>
|
|
|
|
|
*/
|
|
|
|
|
protected $guarded = [];
|
|
|
|
|
}
|