@if (isDesktop())
@if (!isDesktop())
@endif
@endif
@if (isDesktop())
{{ $orders->links() }}
@else
@endif
{!! __('My Orders') !!}
@endif {!! __('Welcome') !!} {{ Auth::user()->name }}
@if ($orders->count())
# | {!! __('Order No') !!} | {!! __('Date') !!} | {!! __('Status') !!} | |
---|---|---|---|---|
{{ $loop->index + $orders->firstItem() }} | {!! $order->order_number !!} | {{ $order->created_at->format('Y-m-d') }} | @php $status = $order->status ?? 0; if ($order->publish == -1) { $status = 9; } @endphp@if (empty($order->publish)) {!! __('Order pending') !!} @elseif ($order->publish == -1) {!! __('Canceled') !!} {!! __('in stage') !!} {!! transactionOrdr($order->status) !!} @else {!! transactionOrdr($order->status) !!} @endif | {!! __('View Order') !!} |