@extends('front.layouts.app') @section('title') Welcome to @endsection @section('head') @endsection @section('content')

Booking Detail

Mo
Tu
W
Th
F
Sa
Su
@if ($booking->created_by == auth()->user()->id)
{!! fileShow('/uploads/pharmacies/photo/', $booking->user->pharmacist->photo) !!}
Name: {{$booking->user->firstname}} {{$booking->user->lastname}} Preferred Name: {{$booking->user->pharmacist->known_as}} @if ($booking->status == 1) Email: {{$booking->user->email}} @endif
@else
{!! fileShow('/uploads/pharmacies/photo/', $booking->createdBy->pharmacist->photo) !!}
Name: {{$booking->createdBy->firstname}} {{$booking->createdBy->lastname}}Preferred Name: {{$booking->createdBy->pharmacist->known_as}}Email: {{$booking->createdBy->email}}
@endif
  • @if ($booking->status == 0) Requested @elseif ($booking->status == 1) Accepted @else Declined @endif
  • {{$booking->notes}}
@include('front.pharmacy-menu')
@endsection @section('script') @endsection