132 lines
3.4 KiB
PHP
132 lines
3.4 KiB
PHP
<?php
|
|
|
|
namespace App;
|
|
|
|
use Illuminate\Database\Eloquent\Model;
|
|
|
|
class KawalanStok extends Model
|
|
{
|
|
protected $table = 'kawalanstok';
|
|
|
|
/**
|
|
* The attributes that are mass assignable.
|
|
*
|
|
* @var array
|
|
*/
|
|
protected $fillable = [
|
|
'bilgadcf1',
|
|
'bilgadc1',
|
|
'bilgad1',
|
|
'bilgadcf2',
|
|
'bilgadc2',
|
|
'bilgad2',
|
|
'bilgadcf3',
|
|
'bilgadc3',
|
|
'bilgad3',
|
|
'pinjgadcf1',
|
|
'pinjgadc1',
|
|
'pinjgad1',
|
|
'pinjgadcf2',
|
|
'pinjgadc2',
|
|
'pinjgad2',
|
|
'pinjgadcf3',
|
|
'pinjgadc3',
|
|
'pinjgad3',
|
|
'biltebcf1',
|
|
'biltebc1',
|
|
'bilteb1',
|
|
'biltebcf2',
|
|
'biltebc2',
|
|
'bilteb2',
|
|
'biltebcf3',
|
|
'biltebc3',
|
|
'bilteb3',
|
|
'pinjtebcf1',
|
|
'pinjtebc1',
|
|
'pinjteb1',
|
|
'pinjtebcf2',
|
|
'pinjtebc2',
|
|
'pinjteb2',
|
|
'pinjtebcf3',
|
|
'pinjtebc3',
|
|
'pinjteb3',
|
|
'billelcf1',
|
|
'billelc1',
|
|
'billel1',
|
|
'billelcf2',
|
|
'billelc2',
|
|
'billel2',
|
|
'billelcf3',
|
|
'billelc3',
|
|
'billel3',
|
|
'pinjlelcf1',
|
|
'pinjlelc1',
|
|
'pinjlel1',
|
|
'pinjlelcf2',
|
|
'pinjlelc2',
|
|
'pinjlel2',
|
|
'pinjlelcf3',
|
|
'pinjlelc3',
|
|
'pinjlel3',
|
|
'bilhapcf1',
|
|
'bilhapc1',
|
|
'bilhap1',
|
|
'bilhapcf2',
|
|
'bilhapc2',
|
|
'bilhap2',
|
|
'bilhapcf3',
|
|
'bilhapc3',
|
|
'bilhap3',
|
|
'pinjhapcf1',
|
|
'pinjhapc1',
|
|
'pinjhap1',
|
|
'pinjhapcf2',
|
|
'pinjhapc2',
|
|
'pinjhap2',
|
|
'pinjhapcf3',
|
|
'pinjhapc3',
|
|
'pinjhap3',
|
|
'jumbil1',
|
|
'jumbil2',
|
|
'jumbil3',
|
|
'jumbilall',
|
|
'jumpinj1',
|
|
'jumpinj2',
|
|
'jumpinj3',
|
|
'jumpinjall',
|
|
'per1',
|
|
'per2',
|
|
'per3',
|
|
'jumgad',
|
|
'jumpinjgad',
|
|
'jumpinjgadall',
|
|
'jumteb',
|
|
'jumpinjteb',
|
|
'jumpinjteball',
|
|
'jumlel',
|
|
'jumpinjlel',
|
|
'jumpinjlelall',
|
|
'jumhap',
|
|
'jumpinjhap',
|
|
'jumpinjhapall',
|
|
'jumpinjgadcf',
|
|
'jumpinjtebcf',
|
|
'jumpinjlelcf',
|
|
'jumpinjhapcf',
|
|
'jumgadcf',
|
|
'jumgadall',
|
|
'jumtebcf',
|
|
'jumteball',
|
|
'jumlelcf',
|
|
'jumlelall',
|
|
'jumhapcf',
|
|
'jumhapall'
|
|
];
|
|
|
|
/**
|
|
* The attributes excluded from the model's JSON form.
|
|
*
|
|
* @var array
|
|
*/
|
|
// protected $hidden = [];
|
|
} |