Files
lpj/app/Models/JenisLegalitasJaminan.php
Daeng Deni Mardaeni ec6cb8e09f Add custom fields to JenisLegalitasJaminan
Added `custom_field` and `custom_field_type` columns to the `jenis_legalitas_jaminan` table. Updated model, migration, and request files to handle these new fields, ensuring they are optional and have a maximum length of 255 characters.
2024-11-04 16:00:10 +07:00

12 lines
316 B
PHP

<?php
namespace Modules\Lpj\Models;
use Modules\Lpj\Database\Factories\JenisLegalitasJaminanFactory;
class JenisLegalitasJaminan extends Base
{
protected $table = 'jenis_legalitas_jaminan';
protected $fillable = ['code', 'name','slug','custom_field','custom_field_type'];
}