@extends('layouts.app') @section('content')
{{ $pageName??'' }} Add New
@if(count($datas) > 0) @php $i = 1; @endphp @foreach($datas as $data) @endforeach @endif
SL Date Name Tour Type Address No of Person Status Action
{{ $i++ }} Start: {{ date('d-m-Y h:m a', strtotime($data->start_date)) }}
End: {{ date('d-m-Y h:m a', strtotime($data->end_date)) }}
{{ $data->name??'' }} {{ $data->type_table->name??'' }} {{ $data->address??'' }}, {{ $data->city_table->name??'' }}
{{ $data->country_table->name??'' }}
Adults: {{ $data->no_of_adult??'' }}
Childs: {{ $data->no_of_children??'' }}
Infant: {{ $data->no_of_infant??'' }}
{{ $data->status = 1?'Active':'In-Active' }}
SL Date Name Tour Type Address No of Person Status Action
@endsection