@extends('layouts.app') @section('title', __('messages.select_tickets') . ' - ' . $ticket->translatedTitle) @section('content')
{{-- Top Section with Gray Background --}}
{{-- Ticket Title Bar --}}
{{ $ticket->translatedTitle }}
{{-- Date Selector Bar --}}
{{-- Info Text Bar --}}
{{ __('messages.please_select_date_time') }}
{{-- Bottom Sheet - Date Picker Card --}}
{{-- Scroll Button at Top Right --}} {{-- Title --}}

{{ __('messages.please_select_date_time') }}

{{-- Form --}}
{{-- Dates Row --}}
{{-- Calendar Icon Box --}}
{{-- Date Cards --}}
@foreach($dates as $date)
{{ $date['day_name'] }} {{ $date['day'] }} {{ $date['month'] }} {{ __('messages.from') }}: {{ number_format($date['price'], 0) }} {{ $currencyCode }}
@endforeach
{{-- Apply Button --}}
@endsection @push('styles') @endpush @push('scripts') @endpush