File "Bank.php"
Full Path: /var/www/html/back/app/Http/Bank.php
File size: 195 bytes
MIME-type: text/x-php
Charset: utf-8
<?php
namespace App\Models;
use Illuminate\Database\Eloquent\Model;
class Bank extends Model
{
protected $fillable = [
'id',
'name',
'bic',
'city'
];
}