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

26 lines
450 B
PHP

<?php
namespace App;
use Illuminate\Database\Eloquent\Model;
class MaxPinjaman extends Model
{
protected $table = 'max_pinjaman';
public $timestamps = false;
/**
* The attributes that are mass assignable.
*
* @var array
*/
protected $fillable = [
'user_type','max'
];
/**
* The attributes excluded from the model's JSON form.
*
* @var array
*/
// protected $hidden = [];
}