@extends('mobileAdmin.base', [ 'mainId' => 'orders', 'currency' => $_COOKIE['currency'] ?? \App\Enumerables\Currency::CNY, ]) @section('title', '订单') @section('content')
{{$orderItem['productTitle']->valueString}}
入学日期:{{$orderItem['startDate']}}
{{$orderItem['orderItemFee']}}
@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