@extends('shop.layouts.app') @section('content')
@include('shop.customer.sidebar')

Orders

{{--
--}}
@if (!empty($orders)) @foreach ($orders as $order) @endforeach @endif
Order ID Date Total Status Actions
{{$order->id}} {{ \Carbon\Carbon::parse($order->created_at)->diffForHumans() }} ₹ {{ $order->grand_total }} @switch($order->status) @case('pending') {{$order->status}} @break @case('packing') {{$order->status}} @break @case('shipping') {{$order->status}} @break @case('packed') {{$order->status}} @break @case('cancel') {{$order->status}} @break @case('hold') {{$order->status}} @break @default {{$order->status}} @endswitch
{{ $orders->links() }}
@endsection