@extends('mobileAdmin.base', [
'mainId' => 'orders',
'currency' => $_COOKIE['currency'] ?? \App\Enumerables\Currency::CNY,
])
@section('title', '订单')
@section('content')
@if(!empty($orderItem['applicationStatus']) && is_iterable($orderItem['applicationStatus']))
@foreach($orderItem['applicationStatus'] as $key => $value)
-
{{$value['showStatus']}}
@if(!empty($value['demand']) && is_iterable($value['demand']))
@foreach($value['demand'] as $demand)
{{$demand}}
@endforeach
@endif
{{$value['updated']}}
@endforeach
@endif
@endsection