@include('layouts.users-navbar')
@if (session('warning'))
{{ session('warning') }}
@endif
  • 1. Passageroplysninger
  • 2. Betaling
  • 3. Resumé
@csrf
@if ($errors->any())
Oops!
    @foreach ($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif

Hovedpassageren

Ture

{{ date('H:i', strtotime($trip->departure_time)) }} - {{ date('H:i', strtotime($trip->arrival_time)) }} {{request()->route('date')}}

Bus model: {{ $trip->bus->type }} : {{ $trip->bus->model }}

Fra - Til: {{ $trip->startLocation->name }} - {{ $trip->endLocation->name }}

Rejsedetaljer Pris for én person Pris for én person
1 {{ $trip->price }}DKK {{ $trip->return_price }}DKK
Total {{ $trip->price }}DKK {{ $trip->return_price }}DKK
@include('layouts.footer')