@extends('admin.layouts.contentLayoutMaster') @section('title','Booking View') @section('pagelevelcss') @stop @section('content')
Package: | {{$viewdata->package->name}} |
Name: | {{$viewdata->name}} |
Email: | {{$viewdata->email}} |
Appointment Date: | @if(isset($viewdata->appointment_date)) {{Carbon\Carbon::parse($viewdata->appointment_date)->format('m/d/Y')}} {{$viewdata->appointment_time}} @else --- @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 |