Files
lis/htdocs/app/Logbook.php
2025-07-16 07:36:13 +07:00

14 lines
280 B
PHP

<?php
namespace App;
use Illuminate\Database\Eloquent\Model;
class Logbook extends Model
{
protected $table = "db_logbooklist";
protected $fillable = [
'id', 'kelompok', 'kode', 'kepanjangan', 'kuota', 'target', 'kuota2', 'target2', 'kuota3', 'target3'
];
}