first commit

This commit is contained in:
2022-04-13 13:51:55 +07:00
commit 47e209c023
3107 changed files with 238911 additions and 0 deletions

14
app/Models/M_Rekening.php Normal file
View File

@ -0,0 +1,14 @@
<?php
namespace App\Models;
use Illuminate\Database\Eloquent\Factories\HasFactory;
use Illuminate\Database\Eloquent\Model;
class M_Rekening extends Model
{
protected $table = 't_rekening'; //nama table yang kita buat lewat migration adalah todo
protected $primaryKey = 'id_rek';
const CREATED_AT = null;
const UPDATED_AT = null;
}