first commit
This commit is contained in:
No files matched your search
@@ -0,0 +1,29 @@
|
||||
<?php
|
||||
|
||||
namespace App;
|
||||
|
||||
use Illuminate\Database\Eloquent\Model;
|
||||
|
||||
class Reference extends Model
|
||||
{
|
||||
|
||||
/**
|
||||
* The attributes that are mass assignable.
|
||||
*
|
||||
* @var array
|
||||
*/
|
||||
protected $fillable = [
|
||||
'Kode', 'Nama', 'Pros', 'Tipe', 'KodeMaping', 'aktif', 'kdRekBlj', 'NM', 'NIP','NMRekening'
|
||||
];
|
||||
|
||||
/**
|
||||
* The attributes excluded from the model's JSON form.
|
||||
*
|
||||
* @var array
|
||||
*/
|
||||
protected $hidden = [];
|
||||
protected $table = 'TMLogReference';
|
||||
protected $primaryKey = 'Kode';
|
||||
protected $keyType = 'string';
|
||||
public $incrementing = false;
|
||||
}
|
||||
Reference in New Issue
Block a user