@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 Start Date Rent Duration Quantity Subtotal Remove

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

@endsection