26 lines
562 B
PHP
26 lines
562 B
PHP
<?php
|
|
|
|
namespace App;
|
|
|
|
use Illuminate\Database\Eloquent\Model;
|
|
|
|
class StokAudit2 extends Model
|
|
{
|
|
protected $table = 'stokaudit2';
|
|
|
|
/**
|
|
* The attributes that are mass assignable.
|
|
*
|
|
* @var array
|
|
*/
|
|
protected $fillable = ['tahun','bulan','norujukan','tempoh','nokp','berat','nilaimarhun','pinjaman','bakipjm','kadarupdah','tempohblmbyar','upahblmbyar','lanjutan'];
|
|
|
|
public $timestamps = false;
|
|
/**
|
|
* The attributes excluded from the model's JSON form.
|
|
*
|
|
* @var array
|
|
*/
|
|
// protected $hidden = [];
|
|
}
|