@extends('layouts.app') @section('content')

Show Invoice

All Order

Invoice {{ $orderInfo->status != 'paid' ? '( ' . strFilter($orderInfo->status) . ' )' : '' }}

Order No. #{{ $orderInfo->order_no }}

{{-- billing from --}}

Order Form

{{-- logo --}} {{-- Logo --}}

{{$siteInfo->site_name}}

{{--

Name : {{ strFilter('owner of this website') }}

--}}

Email : {{ $siteInfo->email }}

Mobile : {{ $siteInfo->mobile }}

Address : {{ $siteInfo->location }}

{{--

Ref. Code : {{ $orderInfo->ref_no }}

--}}

Date : {{ !empty($orderInfo->created) ? date('d F, Y', strtotime($orderInfo->created)) : '' }}

{{-- billing to --}}

Order To

{{-- logo --}} {{-- --}} @if (!empty($orderInfo->company))

{{ !empty($orderInfo->company) ? strFilter($orderInfo->company) : '' }}

@endif
@if (!empty($orderInfo->customer->full_name))

Name : {{ !empty($orderInfo->customer->full_name) ? strFilter($orderInfo->customer->full_name) : 'N/A' }}

@endif @if (!empty($orderInfo->email))

Email : {{ !empty($orderInfo->email) ? $orderInfo->email : 'N/A' }}

@endif @if (!empty($orderInfo->mobile))

Mobile : {{ !empty($orderInfo->mobile) ? $orderInfo->mobile : 'N/A' }}

@endif @if (!empty($orderInfo->address))

Address : {{ !empty($orderInfo->address) ? $orderInfo->address : 'N/A' }}

@endif @if (!empty($orderInfo->delivery_date))

Date : {{ !empty($orderInfo->delivery_date) ? date('d F, Y', strtotime($orderInfo->delivery_date)) : 'N/A' }}

@endif
{{-- --}} @foreach ($orderInfo->orderItem as $key => $row) @endforeach
Live URL Price Other Price Article Writing Amount

{{ $row->live_url }}

{{ sprintf("$%0.2f", $row->url_price) }} {{ sprintf("$%0.2f", $row->other_price) }} {{ sprintf("$%0.2f", $row->artical) }} {{ sprintf("$%0.2f", $row->total) }}
{{ strFilter($orderInfo->status) }} Subtotal {{ sprintf("$%0.2f", $orderInfo->subtotal) }}
Service Charge {{ sprintf("$%0.2f", $orderInfo->service_charge) }}
Tax {{ sprintf("$%0.2f", $orderInfo->tax) }}
Discount {{ sprintf("$%0.2f", $orderInfo->discount) }}
Total {{ sprintf("$%0.2f", $orderInfo->grand_total) }}
@endsection @push('headerPartial') @endpush @push('footerPartial') @endpush