init: model
This commit is contained in:
parent
6b9f098664
commit
eb6fe9b6a2
12
app/Models/MsAsuransi.php
Normal file
12
app/Models/MsAsuransi.php
Normal file
@ -0,0 +1,12 @@
|
||||
<?php
|
||||
|
||||
namespace App\Models;
|
||||
|
||||
use Illuminate\Database\Eloquent\Model;
|
||||
|
||||
class MsAsuransi extends Model
|
||||
{
|
||||
protected $table = 'ms_asuransi';
|
||||
protected $primaryKey = 'id_asuransi';
|
||||
protected $guarded = [];
|
||||
}
|
||||
12
app/Models/MsPasien.php
Normal file
12
app/Models/MsPasien.php
Normal file
@ -0,0 +1,12 @@
|
||||
<?php
|
||||
|
||||
namespace App\Models;
|
||||
|
||||
use Illuminate\Database\Eloquent\Model;
|
||||
|
||||
class MsPasien extends Model
|
||||
{
|
||||
protected $table = 'ms_pasien';
|
||||
protected $primaryKey = 'mr_pasien';
|
||||
protected $guarded = [];
|
||||
}
|
||||
12
app/Models/MsPegawai.php
Normal file
12
app/Models/MsPegawai.php
Normal file
@ -0,0 +1,12 @@
|
||||
<?php
|
||||
|
||||
namespace App\Models;
|
||||
|
||||
use Illuminate\Database\Eloquent\Model;
|
||||
|
||||
class MsPegawai extends Model
|
||||
{
|
||||
protected $table = 'ms_pegawai';
|
||||
protected $primaryKey = 'id_pegawai';
|
||||
protected $guarded = [];
|
||||
}
|
||||
12
app/Models/MsRuangPelayanan.php
Normal file
12
app/Models/MsRuangPelayanan.php
Normal file
@ -0,0 +1,12 @@
|
||||
<?php
|
||||
|
||||
namespace App\Models;
|
||||
|
||||
use Illuminate\Database\Eloquent\Model;
|
||||
|
||||
class MsRuangPelayanan extends Model
|
||||
{
|
||||
protected $table = 'ms_ruang_pelayanan';
|
||||
protected $primaryKey = 'id_ruang_pelayanan';
|
||||
protected $guarded = [];
|
||||
}
|
||||
12
app/Models/MsTindakan.php
Normal file
12
app/Models/MsTindakan.php
Normal file
@ -0,0 +1,12 @@
|
||||
<?php
|
||||
|
||||
namespace App\Models;
|
||||
|
||||
use Illuminate\Database\Eloquent\Model;
|
||||
|
||||
class MsTindakan extends Model
|
||||
{
|
||||
protected $table = 'ms_tindakan';
|
||||
protected $primaryKey = 'id_tindakan';
|
||||
protected $guarded = [];
|
||||
}
|
||||
12
app/Models/TrPembayaran.php
Normal file
12
app/Models/TrPembayaran.php
Normal file
@ -0,0 +1,12 @@
|
||||
<?php
|
||||
|
||||
namespace App\Models;
|
||||
|
||||
use Illuminate\Database\Eloquent\Model;
|
||||
|
||||
class TrPembayaran extends Model
|
||||
{
|
||||
protected $table = 'tr_pembayaran';
|
||||
protected $primaryKey = 'id_pembayaran';
|
||||
protected $guarded = [];
|
||||
}
|
||||
12
app/Models/TrRegistrasi.php
Normal file
12
app/Models/TrRegistrasi.php
Normal file
@ -0,0 +1,12 @@
|
||||
<?php
|
||||
|
||||
namespace App\Models;
|
||||
|
||||
use Illuminate\Database\Eloquent\Model;
|
||||
|
||||
class TrRegistrasi extends Model
|
||||
{
|
||||
protected $table = 'tr_registrasi';
|
||||
protected $primaryKey = 'id_registrasi';
|
||||
protected $guarded = [];
|
||||
}
|
||||
12
app/Models/TrTransaksi.php
Normal file
12
app/Models/TrTransaksi.php
Normal file
@ -0,0 +1,12 @@
|
||||
<?php
|
||||
|
||||
namespace App\Models;
|
||||
|
||||
use Illuminate\Database\Eloquent\Model;
|
||||
|
||||
class TrTransaksi extends Model
|
||||
{
|
||||
protected $table = 'tr_transaksi';
|
||||
protected $primaryKey = 'id_transaksi';
|
||||
protected $guarded = [];
|
||||
}
|
||||
Loading…
x
Reference in New Issue
Block a user