@extends('user.layouts.app') @section('title', 'Request Extension - ' . $booking->booking_code) @section('content')

Request Booking Extension

Extend your warehouse booking period

Back to Booking
Extension Request Form
{{-- Current Booking Info --}}
Current Booking Details

Booking Code: {{ $booking->booking_code }}

Warehouse: {{ $booking->warehouse->name }}

Current Period: {{ $lastBooking->start_date->format('M d, Y') }} - {{ $lastBooking->end_date->format('M d, Y') }} ({{ $lastBooking->rental_days }} days)

Current Cost: ${{ number_format($lastBooking->final_price, 2) }}

{{-- Extension Form --}}
@csrf
Select a date after {{ $lastBooking->end_date->format('M d, Y') }} @error('requested_end_date')
{{ $message }}
@enderror
Maximum 1000 characters
{{-- Cost Breakdown (hidden initially) --}}
Cancel
How it Works
  1. Select your new desired end date
  2. Review the calculated extension cost
  3. Submit your extension request
  4. Admin will review and approve/reject
  5. Upon approval, pay the additional amount

Important Notes:
  • Extension is subject to space availability
  • Admin approval is required
  • Same rates as original booking apply
  • You can only have one pending extension request at a time
@push('scripts') @endpush @endsection