Files
api_arrahn/app/Transaction.php
T
LAPTOP-DGCU80CH\user1 4f463412b0 add api
2020-11-08 15:59:21 +08:00

26 lines
521 B
PHP

<?php
namespace App;
use Illuminate\Database\Eloquent\Model;
class Transaction extends Model
{
protected $table = 'transaction';
public $timestamps = false;
/**
* The attributes that are mass assignable.
*
* @var array
*/
protected $fillable = [
'trans_type','norujukan','nokp','teller','kodcaw','duit_masuk','duit_keluar','created_at'
];
/**
* The attributes excluded from the model's JSON form.
*
* @var array
*/
// protected $hidden = [];
}