fix apiaku

This commit is contained in:
hafifierahman
2021-11-14 10:51:46 +08:00
parent 59f746b566
commit d9ebb73880
3 changed files with 57 additions and 0 deletions
+28
View File
@@ -0,0 +1,28 @@
<?php
namespace App;
use Illuminate\Database\Eloquent\Model;
class LookupWakil extends Model
{
protected $table = 'lookup_wakil';
public $timestamps = false;
/**
* The attributes that are mass assignable.
*
* @var array
*/
protected $fillable = [
'recno',
'hubungan'
];
/**
* The attributes excluded from the model's JSON form.
*
* @var array
*/
// protected $hidden = [];
}