Upload Data temp realisasi belanja dbh

This commit is contained in:
Pusdatin BPKD Jkt
2022-07-15 16:41:04 +07:00
parent 97154c1100
commit 62f94b5ab6
19 changed files with 582 additions and 54 deletions
+16
View File
@@ -0,0 +1,16 @@
<?php
namespace App\Models;
use Illuminate\Database\Eloquent\Factories\HasFactory;
use Illuminate\Database\Eloquent\Model;
class UnitSatuan extends Model
{
use HasFactory;
protected $table = 'unit_satuan';
protected $fillable = [
'nama_satuan'
];
}