@extends('admin.master', ['menu' => 'booking-applications']) @section('title', isset($title) ? $title : '') @section('content')
{{ __('Personal Information:') }}
{{ __('Name: ') }} {{ $info->first_name . '-' . $info->last_name }}
{{ __('Email: ') }} {{ $info->email }}
{{ __('Mobile: ') }} {{ $info->mobile }}
{{ __('Country: ') }} {{ $info->country->name_en }}
{{ __('Residency: ') }} @if ($info->residency == 'jordanian_price') {{ __('Jordanian') }} @elseif($info->residency == 'visitor_price') {{ __('Visitor') }} @elseif($info->residency == 'residency_price') {{ __('Residence') }} @endif
{{ __('Number Of Visitor: ') }} {{ $info->num_visitor }}

{{ __('Special Request: ') }} {{ $info->special_request }}

{{ __('#') }} {{ __('Reservation') }} {{ __('Activity Type') }} {{ __('Date') }} {{ __('Participents') }} {{ __('Dinner') }} {{ __('Created Date') }}
@push('post_scripts') @endpush @endsection