18 lines
415 B
PHP
18 lines
415 B
PHP
<?php
|
|
|
|
namespace App\Models;
|
|
|
|
use Illuminate\Database\Eloquent\Relations\HasMany;
|
|
use Illuminate\Database\Eloquent\Relations\BelongsTo;
|
|
|
|
class ReferenceGpc extends SigdModel
|
|
{
|
|
protected $table = 'gpc_list';
|
|
|
|
protected $fillable = [
|
|
'id', 'sector', 'sub_sector',
|
|
'gpc_code', 'ipcc_code', 'notation_key', 'name', 'scope',
|
|
'row_num', 'row_status', 'created_by', 'updated_by',
|
|
];
|
|
}
|