pembuatan api

This commit is contained in:
hafifierahman
2020-12-28 18:36:49 +08:00
parent 52e91a2050
commit 232aa41f0e
17 changed files with 740 additions and 38 deletions
+27
View File
@@ -0,0 +1,27 @@
<?php
namespace App;
use Illuminate\Database\Eloquent\Model;
class BatalGadai extends Model
{
protected $table = 'batalgadai';
public $timestamps = false;
/**
* The attributes that are mass assignable.
*
* @var array
*/
protected $fillable = [
'recNo','noRujukan','tellerId','namaTeller', 'tarikh', 'masa'
];
/**
* The attributes excluded from the model's JSON form.
*
* @var array
*/
// protected $hidden = [];
}