mirror of
https://gitlab.com/omair-personal/exchange.git
synced 2026-08-19 04:24:08 +00:00
11 lines
178 B
PHP
11 lines
178 B
PHP
<?php
|
|
|
|
namespace App;
|
|
|
|
use Illuminate\Database\Eloquent\Model;
|
|
|
|
class SettingActiveBank extends Model
|
|
{
|
|
protected $fillable = ['x1_bank_id','x2_bank_id','beneficiary_id'];
|
|
}
|