14 lines
214 B
PHP
Executable File
14 lines
214 B
PHP
Executable File
<?php
|
|
$id = (int) $key;
|
|
|
|
$billing = \App\Models\Billing::find($id);
|
|
if (!empty($billing)) {
|
|
if ($billing->status == 'waiting') {
|
|
return $billing;
|
|
}
|
|
}
|
|
|
|
|
|
return null;
|
|
|