@extends('layouts.admin') @section('title',$booking->number) @section('heading','Property booking') @section('content')
{{ $booking->property?->title }}
{{ $booking->customer?->name }}
{{ $booking->customer?->email }}
{{ $booking->customer?->phone }}
{{ $booking->units }} × {{ number_format((float)$booking->unit_price,2) }}
Deposit: {{ number_format((float)$booking->security_deposit,2) }}
Total: {{ number_format((float)$booking->total,2) }}