Files
2021-09-03 02:28:17 +08:00

27 lines
445 B
PHP

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