Files
api_arrahn/app/AnsRugi.php
T
hafifierahman 232aa41f0e pembuatan api
2020-12-28 18:36:49 +08:00

34 lines
525 B
PHP

<?php
namespace App;
use Illuminate\Database\Eloquent\Model;
class AnsRugi extends Model
{
protected $table = 'ansrugi';
public $timestamps = false;
/**
* The attributes that are mass assignable.
*
* @var array
*/
protected $fillable = [
'nosiri',
'norujukan',
'nopelanggan',
'tarikh',
'bayaran',
'teller',
'nowakil',
'hubungan'
];
/**
* The attributes excluded from the model's JSON form.
*
* @var array
*/
// protected $hidden = [];
}