Files
2021-01-11 17:59:46 +08:00

36 lines
598 B
PHP

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