@extends('vendor.layout') @section('title','Overview') @section('heading','Business overview') @section('content')
| Order | Customer | Status | Total | |
|---|---|---|---|---|
| {{ $order->number }} | {{ $order->customer?->name }} | {{ str_replace('_',' ',$order->status) }} | {{ $order->currency }} {{ number_format($order->total,2) }} | Open |
| No orders yet. | ||||
| Booking | Service | Starts | Status |
|---|---|---|---|
| {{ $booking->number }} | {{ $booking->offering?->name }} | {{ $booking->starts_at->format('d M, H:i') }} | {{ str_replace('_',' ',$booking->status) }} |
| No bookings yet. | |||