@extends('layouts.master') @section('title', 'Show Booking | Tripo - Tourism Management app') @section('title-topbar', __('basic.unit 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.room type') . ':'}} {{ $item->room_type->name }}
{{ __('basic.room meal') . ':'}} {{ $item->room_meal->name }}
{{ __('basic.room view') . ':'}} {{ $item->room_view->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)) }}