@extends('pdfs.layout') @section('content') @foreach ($orders as $storeOrder)
The {{ $stringMappingConfig['name'] }} Team
Basic Nutrition, Inc.
11140 Rockville Pike
Rockville, MD 20852

INVOICE

Contact Us

{{ $stringMappingConfig['supportEmail'] }}

{{ $stringMappingConfig['supportPhone'] }}

{{ $stringMappingConfig['productUrl'] }}

Order Information
 
Date: created_at)) ?> Order: #{{$storeOrder->orderNumber()}}
 
Items for Delivery
 
{{$stringMappingConfig['productName']}}
Qty: {{$storeOrder->number_of_units}}
@if($storeOrder->promoCode) ${{$storeOrder->promoCode->discounted_price_per_unit}} ${{$stringMappingConfig['standardUnitPrice']}} @else ${{$stringMappingConfig['standardUnitPrice']}} @endif
 
@if($storeOrder->promoCode) @endif
Promo Code {{$storeOrder->promoCode->code}}
Items ${{$storeOrder->content_total}}
Shipping Total ${{$storeOrder->shipping_total}}
Total ${{$storeOrder->final_total}}
 
Shipping Information
Ship To:
{{$storeOrder->client->displayName()}}
{{$storeOrder->mailing_address_line1}} {{$storeOrder->mailing_address_line2}}
{{$storeOrder->mailing_address_city}}, {{$storeOrder->mailing_address_state}}, {{$storeOrder->mailing_address_zip}}

Shipping Method:
{{$storeOrder->shipping_method}}
Billing Information
Bill To:
{{$storeOrder->client->displayName()}}

@if($storeOrder->paymentMethod) Payment Method:
{{$storeOrder->paymentMethod->brand()}} {{$storeOrder->paymentMethod->displayNameShort()}} @endif
@if (!$loop->last)
@endif @endforeach @endsection