This commit is contained in:
hafifierahman
2022-04-03 09:57:15 +08:00
parent 1b5aeeaf11
commit 6ccfa59d8d
7 changed files with 208 additions and 215 deletions
+18
View File
@@ -0,0 +1,18 @@
<?php
namespace App;
use Illuminate\Database\Eloquent\Model;
class CawanganAR extends Model
{
protected $table = 'cawangan';
protected $fillable = [
'details_caw',
'kodcaw',
'syarikat',
'min',
'max'
];
}