add api bank

This commit is contained in:
Zakwan Hamdan
2020-11-03 10:50:13 +08:00
parent 6aa1d91f5b
commit ba7e18eee1
3 changed files with 43 additions and 0 deletions
+26
View File
@@ -0,0 +1,26 @@
<?php
namespace App;
use Illuminate\Database\Eloquent\Model;
class Bank extends Model
{
protected $table = 'bank';
/**
* The attributes that are mass assignable.
*
* @var array
*/
// protected $fillable = [
// ];
/**
* The attributes excluded from the model's JSON form.
*
* @var array
*/
// protected $hidden = [];
}