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

Your Orders

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

@include('partials.customer_sidebar')
@if ($orders->count() > 0)
@foreach ($orders as $order) @endforeach
Order # Date Total
# {{ $order->number }} @if ($order->payment and $order->payment->method == 1 and $order->payment->billplz_signature_matched === 0) @endif {{ $order->date_formatted }} {{ $order->total }} Points
{{ $orders->links() }} @endif
@endsection @section('js') @endsection