14 lines
280 B
PHP
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'
|
|
];
|
|
}
|