@extends('layouts.master') @section('title', 'Show Booking | Tripo - Tourism Management app') @section('title-topbar', __('basic.vehicle booking')) @section('css') @endsection @section('fixedcontent') @if (Session::has('success'))
@endif @endsection @section('content'){{ $booking->creator->first_name . " " . $booking->creator->second_name }}
{{ $booking->code }}
{{ __('basic.from') . ':'}} {{ $item->from->name }}
@endif @if($item->to){{ __('basic.to') . ':'}} {{ $item->to->name }}
@endif{{ __('basic.vehicle') . ':'}} {{ $item->vehicle->name }}
{{ __('basic.traveler name') . ':'}} {{ $item->customer_name }}
{{ __('basic.traveler phone') . ':'}} {{ $item->customer_phone }}
@endif {{-- @if ($item->debtor) @php $debtor_ur_wa = route('booking_print', $item->code); @endphp @endif --}}{{ $booking->final_price }}
{{ date('d M Y', strtotime($booking->start_at)) }}