Add some routes for transfers.

This commit is contained in:
James Cole
2021-03-07 15:26:42 +01:00
parent 414c99489c
commit 91394553c3
15 changed files with 682 additions and 157 deletions

View File

@@ -247,7 +247,7 @@ class GenericRequest extends FormRequest
if (is_array($array)) {
foreach ($array as $billId) {
$billId = (int)$billId;
$bill = $repository->findNull($billId);
$bill = $repository->find($billId);
if (null !== $billId) {
$this->bills->push($bill);
}