Files
getgreen-backend/app/Http/Controllers/Payments/is_proper.php

11 lines
174 B
PHP
Executable File

<?php
if ($model->payment_system == 'payme') {
$amount = $amount / 100;
}
if ($model->amount == $amount) {
return true;
}
return false;