Files
2020-11-02 16:56:57 +08:00

26 lines
399 B
PHP

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