39 lines
644 B
PHP
39 lines
644 B
PHP
<?php
|
|
|
|
namespace App;
|
|
|
|
use Illuminate\Database\Eloquent\Model;
|
|
|
|
class LelMarhun extends Model
|
|
{
|
|
protected $table = 'lelmarhun';
|
|
public $timestamps = false;
|
|
|
|
/**
|
|
* The attributes that are mass assignable.
|
|
*
|
|
* @var array
|
|
*/
|
|
|
|
protected $fillable = [
|
|
'kodcaw',
|
|
'norujukan',
|
|
'bil',
|
|
'marhun',
|
|
'nota',
|
|
'karat',
|
|
'berat',
|
|
'harga',
|
|
'n_marhun',
|
|
'hargaasas',
|
|
'batch_no',
|
|
'beratasal',
|
|
];
|
|
|
|
/**
|
|
* The attributes excluded from the model's JSON form.
|
|
*
|
|
* @var array
|
|
*/
|
|
// protected $hidden = [];
|
|
} |