@extends('backend.master') @section('title') {{ $title }} @endsection @section('content')

{{ _trans('common.Appointments') }}

{{ _trans('common.Add New') }}
@forelse($appointments as $appointment) @if($appointment->type == 'book_viewing') @else @endif @empty @endforelse
{{ _trans('landlord.SR No') }} {{ _trans('landlord.Type') }} {{ _trans('landlord.Date') }} {{ _trans('landlord.Time') }} {{ _trans('landlord.Name') }} {{ _trans('landlord.Email') }} {{ _trans('landlord.Phone') }} {{ _trans('landlord.Property') }} {{ _trans('landlord.Property type') }} {{ _trans('landlord.Property address') }} {{ _trans('landlord.Message') }} {{ _trans('landlord.action') }}
{{ $loop->iteration }} {{ str_replace('_',' ', $appointment->type) }} {{ date('F d Y', strtotime($appointment->date)) }}{{ @$appointment->timeSlot->start_time }} - {{ @$appointment->timeSlot->end_time }}{{ $appointment->time }}{{ $appointment->name }} {{ $appointment->email }} {{ $appointment->phone }} {{ @$appointment->property->name }} {{ $appointment->property_type }} {{ $appointment->message }} {{ $appointment->property_address }} {{ _trans('common.Make a call') }} {{ _trans('common.Send Mail') }}
@endsection @push('script') @include('backend.partials.delete-ajax') @endpush