13 lines
222 B
PHP
13 lines
222 B
PHP
<?php
|
|
|
|
namespace App\Models\Sppm;
|
|
|
|
use Illuminate\Database\Eloquent\Model;
|
|
|
|
class JawatanTetapan extends Model
|
|
{
|
|
protected $connection = 'sppm';
|
|
protected $table = 'jawatan_tetapan';
|
|
protected $guarded = [];
|
|
}
|