Files
api_arrahn/app/Parameter.php
T
hafifierahman 5e571e24d0 fix gadai
2021-03-17 16:39:39 +08:00

26 lines
405 B
PHP

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