14 lines
249 B
PHP
14 lines
249 B
PHP
<?php
|
|
|
|
namespace App\Services\Payments;
|
|
|
|
use App\Models\Payment;
|
|
|
|
class PaymentBalanceService
|
|
{
|
|
public function updateBalance(int $paymentId, float $amountPaid): bool
|
|
{
|
|
return Payment::updateBalance($paymentId, $amountPaid);
|
|
}
|
|
}
|