@extends('layouts.app') @section('title', 'Create Booking') @section('content')
@if($type === 1)
Payment confirm
@csrf
@elseif($type === 2)
Create Booking
@csrf
@else

Please select payment type

@endif
Payment information
Hourly Price {{ $booking->price/$booking->hours() }} RM
Total Hours {{ $booking->hours() }} hours
Total Price {{ $booking->price }} RM
Payment Method @if($type ===1 ) Cash @else Online Transfer @endif
@endsection