File "BankService.php"
Full path: /var/www/html/back/database/BankService.php
File
size: 0.23 KB (237 B bytes)
MIME-type: text/x-php
Charset: utf-8
Download Open Edit Advanced Editor Back
<?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);
}
}