API Mobile

This commit is contained in:
Fiza Ali
2021-02-02 18:57:04 +08:00
parent 829e437e11
commit 1dabcdb086
4 changed files with 152 additions and 1 deletions
+29
View File
@@ -0,0 +1,29 @@
<?php
namespace App;
use Illuminate\Database\Eloquent\Model;
class BankMaster extends Model
{
protected $connection = 'mysql7';
protected $table = 'bank';
protected $primaryKey = 'BANKCODE';
/**
* The attributes that are mass assignable.
*
* @var array
*/
// protected $fillable = [
// ];
/**
* The attributes excluded from the model's JSON form.
*
* @var array
*/
// protected $hidden = [];
}