40 lines
598 B
PHP
40 lines
598 B
PHP
<?php
|
|
|
|
namespace App;
|
|
|
|
use Illuminate\Database\Eloquent\Model;
|
|
|
|
class Coordination extends Model
|
|
{
|
|
protected $table = 'coordination';
|
|
|
|
/**
|
|
* The attributes that are mass assignable.
|
|
*
|
|
* @var array
|
|
*/
|
|
protected $fillable = [
|
|
|
|
'id',
|
|
'details',
|
|
'glcode',
|
|
'date',
|
|
'reg_user_id',
|
|
'ver_op_user_id',
|
|
'ver_acc_user_id',
|
|
'amount',
|
|
'jenis'
|
|
];
|
|
|
|
public $timestamps = true;
|
|
|
|
/**
|
|
* The attributes excluded from the model's JSON form.
|
|
*
|
|
* @var array
|
|
*/
|
|
// protected $hidden = [];
|
|
}
|
|
|
|
|