buat kawalanstoklama

This commit is contained in:
MUHD HAFIFIE
2021-04-28 15:49:57 +08:00
parent 976991f6e5
commit 627d61a2cd
2 changed files with 140 additions and 39 deletions
+26
View File
@@ -0,0 +1,26 @@
<?php
namespace App;
use Illuminate\Database\Eloquent\Model;
class KawalanStokLama extends Model
{
protected $table = 'kawalanstok_lama';
/**
* The attributes that are mass assignable.
*
* @var array
*/
protected $fillable = [
'bilGad1','bilGad2','bilGad3','bilTeb1','bilTeb2','bilTeb3','bilLel1','bilLel2','bilLel3','pinjGad1','pinjGad2','pinjGad3','pinjTeb1','pinjTeb2','pinjTeb3','pinjLel1','pinjLel2','pinjLel3'
];
/**
* The attributes excluded from the model's JSON form.
*
* @var array
*/
// protected $hidden = [];
}