Files
api_arrahn/app/Bank.php
T
Zakwan Hamdan ba7e18eee1 add api bank
2020-11-03 10:50:13 +08:00

26 lines
395 B
PHP

<?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 = [];
}