@extends('admin.layouts.contentLayoutMaster') @section('title','Booking View') @section('pagelevelcss') @stop @section('content')
First name: | {{$viewdata->first_name}} |
Last name: | {{$viewdata->last_name}} |
Email: | {{$viewdata->email}} |
Phone: | {{$viewdata->phone}} |
Date of birth: | @if(isset($viewdata->dob)) {{Carbon\Carbon::parse($viewdata->dob)->format('m/d/Y')}} @else --- @endif |
Address: | {{$viewdata->address}} |
Street: | {{$viewdata->street}} |
State: | {{$viewdata->state}} |
City: | {{$viewdata->city}} |
Zipcode: | {{$viewdata->zipcode}} |