updated for previous issues about tuntutbaki duplicate and customer audit

This commit is contained in:
hafifierahman
2022-11-14 00:20:16 +08:00
parent 1baa436a74
commit b9f00bb2bf
5 changed files with 520 additions and 39 deletions
+25
View File
@@ -0,0 +1,25 @@
<?php
namespace App;
use Illuminate\Database\Eloquent\Model;
class AkruNet extends Model
{
protected $table = 'akru_net';
/**
* The attributes that are mass assignable.
*
* @var array
*/
protected $fillable = ['tahun','bulan','jumlah'];
public $timestamps = false;
/**
* The attributes excluded from the model's JSON form.
*
* @var array
*/
// protected $hidden = [];
}