|
|
|
@ -3,6 +3,7 @@ |
|
|
|
namespace App\Http\Controllers\Admin; |
|
|
|
|
|
|
|
use App\Exceptions\CustomException; |
|
|
|
use App\Models\Parking; |
|
|
|
use App\Models\ParkingGateControl; |
|
|
|
use App\Models\ParkingLicensePlate; |
|
|
|
use App\Models\ParkingReservation; |
|
|
|
@ -135,7 +136,8 @@ class ParkingGateControlController extends BaseController |
|
|
|
'member_type_list' => ParkingSpaceType::getData(), |
|
|
|
'leave_remark_list' => get_select_data( |
|
|
|
$this->service->getLeaveRemark() |
|
|
|
) |
|
|
|
), |
|
|
|
'parking_list' => Parking::getData() |
|
|
|
]; |
|
|
|
return $this->responseService->success($data); |
|
|
|
} catch (Exception $e) { |
|
|
|
|