@extends('frontend.layouts.app') @section('title') @endsection @section('seo')
Order No. | Item | Quantity | Total | Status |
---|---|---|---|---|
{{$orders->refnumber}} | @if ($orders->item && $orders->qty)
@foreach (json_decode($orders->item) as $index => $item)
{{ $item }}
@if ($index < count(json_decode($orders->item)) - 1)
@endif @endforeach @endif |
@if ($orders->item && $orders->qty)
@foreach (json_decode($orders->item) as $index => $item)
{{ json_decode($orders->qty)[$index] }}x
@if ($index < count(json_decode($orders->item)) - 1)
@endif @endforeach @endif |
P{{$orders->totalPrice}} | {{$orders->status}} |