@extends('admin.layouts.dashboard') @php $title = "Bookings > New Rental booking"; $button_text = "Book Now"; @endphp @section('title', $title) @section('content')

{{ $title }}

@csrf
@if(session()->has('error'))
{{ session()->get('error') }}
@endif @if(session()->has('success'))
{{ session()->get('success') }}
@endif
Selected Products
Image Product Name Price Quantity Item Subtotal Remove

Item Subtotal: $0.00
GST (5%): $0.00
Order Total: $0.00

@endsection