File "BankService.php"
Full Path: /var/www/html/back/app/Services/BankService.php
File size: 237 bytes
MIME-type: text/x-php
Charset: utf-8
<?php
declare(strict_types=1);
namespace App\Services;
use App\Models\Bank;
class BankService
{
public function update(int $id, array $data)
{
return Bank::query()->where('account_id', $id)->update($data);
}
}