관리-도구
편집 파일: DeliveryManCashCollectService.php
<?php namespace App\Services; class DeliveryManCashCollectService { public function getIdentityImages(object $request, object $deliveryMan): array { return [ 'delivery_man_id' => $deliveryMan['id'], 'user_id' => 0, 'user_type' => 'admin', 'credit' => currencyConverter(amount: $request['amount']), 'transaction_type' => 'cash_in_hand' ]; } }