@extends('emails.layout')
@section('salutation')
ORDER INVOICE
@endsection
@section('content')
testsRequested();
$storeOrderDetailJson = $storeOrder->detailJson();
$storeOrderSelectedOptions = json_decode(@$storeOrderDetailJson->selected_options ?? "{}");
$selectedLab = @$storeOrderSelectedOptions->lab;
?>
|
|
|
TOTAL |
|
${{$storeOrder->total()}}
|
|
|
|
Lab Information
@if($selectedLab)
= selected_lab_html_address($selectedLab); ?>
@else
---
@endif
|
Billing Information
Bill To:
{{$storeOrder->client->displayName()}}
|
|
@endsection