15 lines
246 B
PHP
Executable file
15 lines
246 B
PHP
Executable file
<?php
|
|
|
|
namespace App\Models;
|
|
|
|
use Illuminate\Database\Eloquent\Factories\HasFactory;
|
|
use Illuminate\Database\Eloquent\Model;
|
|
|
|
class PBXPin extends Model
|
|
{
|
|
use HasFactory;
|
|
|
|
protected $table = 'pbx_pin';
|
|
protected $primaryKey = 'id';
|
|
}
|