@extends('layouts.app') @section('title') Orders @endsection @section('content')

Your Orders

You have made {{ $orders->count() }} {{ Str::plural('order', $orders->count()) }}.

@if (Session::has('message'))
{{ Session::get('message') }}
@endif @if ($orders->count() > 0)
@foreach ($orders as $order) @endforeach
Order # Date Total Status
# {{ $order->number }} {{ $order->created_at->format('d F Y') }} {{ config('app.currency') }} {{ $order->total }} {{ $order->status }}
{{ $orders->links() }} @endif
@include('partials.customer_sidebar')
@endsection @section('js') @endsection