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