Files
api_arrahn/app/Poskod.php
T

30 lines
477 B
PHP

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