pembuatan api
This commit is contained in:
@@ -0,0 +1,39 @@
|
||||
<?php
|
||||
|
||||
namespace App;
|
||||
|
||||
use Illuminate\Database\Eloquent\Model;
|
||||
|
||||
class InOutMar extends Model
|
||||
{
|
||||
protected $table = 'inoutmar';
|
||||
|
||||
/**
|
||||
* The attributes that are mass assignable.
|
||||
*
|
||||
* @var array
|
||||
*/
|
||||
protected $fillable = [
|
||||
'TARIKH',
|
||||
'MASA',
|
||||
'NORUJUKAN',
|
||||
'NM',
|
||||
'KPD',
|
||||
'DRP',
|
||||
'BLN',
|
||||
'THN',
|
||||
'TAG',
|
||||
'jenisTebus',
|
||||
'namaTeller'
|
||||
];
|
||||
|
||||
/**
|
||||
* The attributes excluded from the model's JSON form.
|
||||
*
|
||||
* @var array
|
||||
*/
|
||||
// protected $hidden = [];
|
||||
|
||||
public $timestamps = false;
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user