41 lines
752 B
PHP
41 lines
752 B
PHP
<?php
|
|
|
|
namespace App;
|
|
|
|
use Illuminate\Database\Eloquent\Model;
|
|
|
|
class AkruNetPecahan extends Model
|
|
{
|
|
protected $table = 'akru_net_pecahan';
|
|
|
|
/**
|
|
* The attributes that are mass assignable.
|
|
*
|
|
* @var array
|
|
*/
|
|
protected $fillable =
|
|
[
|
|
'id',
|
|
'tahun',
|
|
'bulan',
|
|
'persen_semasa',
|
|
'ujrah_semasa',
|
|
'persen_sebelum',
|
|
'ujrah_sebelum',
|
|
'keuntungan_semasa_1persen',
|
|
'keuntungan_semasa_ujrah',
|
|
'baki_keun_blm_byr_1persen',
|
|
'baki_keun_blm_byr_ujrah',
|
|
'pend_akru_1persen',
|
|
'pend_akru_ujrah',
|
|
];
|
|
|
|
public $timestamps = false;
|
|
/**
|
|
* The attributes excluded from the model's JSON form.
|
|
*
|
|
* @var array
|
|
*/
|
|
// protected $hidden = [];
|
|
}
|