@extends('layouts.app') @section('title') Orders @endsection @section('content')
You have made {{ $orders->count() }} {{ Str::plural('order', $orders->count()) }}.
| Order # | Date | Total | Status |
|---|---|---|---|
| # {{ $order->number }} | {{ $order->created_at->format('d F Y') }} | {{ config('app.currency') }} {{ $order->total }} | {{ $order->status }} |