36 lines
599 B
PHP
36 lines
599 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',
|
|
'ALAMAT3',
|
|
'TELEFON',
|
|
'NOTA'
|
|
];
|
|
|
|
/**
|
|
* The attributes excluded from the model's JSON form.
|
|
*
|
|
* @var array
|
|
*/
|
|
// protected $hidden = [];
|
|
} |