24 lines
548 B
PHP
24 lines
548 B
PHP
<?php
|
|
|
|
namespace Modules\Lpj\Models;
|
|
|
|
use Illuminate\Database\Eloquent\Model;
|
|
use Illuminate\Database\Eloquent\Factories\HasFactory;
|
|
use Modules\Lpj\Database\Factories\TingkatKeramaianFactory;
|
|
|
|
class TingkatKeramaian extends Model
|
|
{
|
|
use HasFactory;
|
|
|
|
protected $table = 'tingkat_keramaian';
|
|
/**
|
|
* The attributes that are mass assignable.
|
|
*/
|
|
protected $fillable = ['code', 'name', 'status'];
|
|
|
|
protected static function newFactory(): TingkatKeramaianFactory
|
|
{
|
|
//return TingkatKeramaianFactory::new();
|
|
}
|
|
}
|