@extends('backend.layouts.app') @section('breadcrumbs') @lang('adminLang.reservations') @endsection @section('content')
@lang('adminLang.reservations') Booked tours
@if($records) @foreach ($records as $record) @endforeach @endif
# @lang('adminLang.contact_name') @lang('adminLang.tour_name') @lang('adminLang.amount') @lang('adminLang.update') @lang('adminLang.actions')
{{$record->tour_id}} {{DB::table('contacts')->where('id', $record->contact_id)->first()->name}} {{$record->total_price}} {{$record->currency}} {{$record->updated_at->format('d-m-Y H:i')}} @lang('adminLang.show') @lang('adminLang.delete')
@if(count($records) == 0)

@lang('adminLang.not-found')

@endif
@endsection