• File: MasterAccount.php
  • Full Path: /var/www/imaliapitest/app/Bank/MasterAccount.php
  • Date Modified: 05/19/2025 4:29 PM
  • File size: 183 bytes
  • MIME-type: text/x-php
  • Charset: utf-8
<?php

namespace App\Bank;

use Illuminate\Database\Eloquent\Model;

class MasterAccount extends Model
{
    protected $fillable = ['account_number', 'name', 'balance', 'user_id'];
}