@extends('frontend.layouts.app') @section('content')
@if(session('error'))
{!! session('error') !!}
@endif @if($errors->any())
    @foreach($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif

Votre Réservation

Quelques étapes et vous êtes prêt pour l’aventure...

@foreach($scooterss as $scooter)
{{ $scooter->modele }}

{{ $scooter->marque }} {{ $scooter->modele }}

{{ number_format($scooter->current_price) }} €/Jour
@endforeach
Informations personnelles
@csrf @php $StartdateHeure = $startDate->format('d/m/Y H\Hi'); // Format: 21/04/2025 14H30 $Startdate = $startDate->format('d/m/Y'); // Format: 21/04/2025 $Startheure = $startDate->format('H\Hi'); // Format: 14H30 $EnddateHeure = $endDate->format('d/m/Y H\Hi'); // Format: 21/04/2025 14H30 $Enddate = $endDate->format('d/m/Y'); // Format: 21/04/2025 $Endheure = $endDate->format('H\Hi'); // Format: 14H30 @endphp
Information Sur Le Loueur
Localisation

{!! $company->address !!}

Horaire D'ouverture De La Boutique

{{ $company->saison }}

@php $days = ['Lun', 'Mar', 'Mer', 'Jeu', 'Ven', 'Sam', 'Dim']; $hours = explode("\n", $company->horaires); // Split horaires by line @endphp @foreach($days as $index => $day) @endforeach
{{ $day }} {{ $hours[$index] ?? 'Fermé' }}

Modification/Annulation
{!! $company->note ?? '' !!}
Panier
Vos dates
Départ le : {{ $startDate->format('d/m/Y H\Hi') }}
Retour le : {{ $endDate->format('d/m/Y H\Hi') }}

Soit {{ ceil($duration) }} Jour(s) de location


Services GD LOC
Offerts
Top case, casques, gants et antivol
Scooter
-
Age du conducteur
{{ $driverAge }}
Information Sur Le Loueur
Localisation

{!! $company->address !!}

Horaire D'ouverture De La Boutique

{{ $company->saison }}

@php $days = ['Lun', 'Mar', 'Mer', 'Jeu', 'Ven', 'Sam', 'Dim']; $hours = explode("\n", $company->horaires); // Split horaires by line @endphp @foreach($days as $index => $day) @endforeach
{{ $day }} {{ $hours[$index] ?? 'Fermé' }}

Modification/Annulation
{!! $company->note ?? '' !!}
@endsection