@extends('admin.layouts.contentLayoutMaster') @section('title','Booking View') @section('pagelevelcss') @stop @section('content')
Package: {{$viewdata->package->name}}
Name: {{$viewdata->name}}
Email: {{$viewdata->email}}
Description:
Appointment Date: @if(isset($viewdata->appointment_date)) {{Carbon\Carbon::parse($viewdata->appointment_date)->format('m/d/Y')}} {{$viewdata->appointment_time}} @else --- @endif
Document: @if(File::exists(public_path('uploads/'.$viewdata->document)) && isset($viewdata->document)) @if($viewdata->document_type == 'doc') file_download @elseif($viewdata->document_type == 'pdf') file_download @elseif($viewdata->document_type == 'image') @endif @endif
Result Document: @if(File::exists(public_path('uploads/'.$viewdata->result_file)) && isset($viewdata->result_file)) @if($viewdata->result_file_type == 'doc') file_download @elseif($viewdata->result_file_type == 'pdf') file_download @elseif($viewdata->result_file_type == 'image') @endif @endif
@endsection @section('pageleveljs') @stop