Files
api_arrahn/app/Pembeli.php
T
hafifierahman 232aa41f0e pembuatan api
2020-12-28 18:36:49 +08:00

35 lines
535 B
PHP

<?php
namespace App;
use Illuminate\Database\Eloquent\Model;
class Pembeli extends Model
{
protected $table = 'pembeli';
public $timestamps = false;
/**
* The attributes that are mass assignable.
*
* @var array
*/
protected $fillable = [
'nopembeli',
'nokp',
'nama',
'alamat1',
'alamat2',
'alamat3',
'alamat4',
'telefon',
'tag_syarikat'
];
/**
* The attributes excluded from the model's JSON form.
*
* @var array
*/
// protected $hidden = [];
}