@extends('adminlte::layouts.app') @section('htmlheader_title') Invoice #{{ $o->lid }} @endsection @section('page_title') {{ $o->sid }} @endsection @section('contentheader_title') Tax Invoice #{{ $o->lid }} @endsection @section('contentheader_description') @endsection @section('main-content')

Tax Invoice

FROM:
{{ $site->site_name }}
{!! join('
',$site->address) !!}
Email: {{ $site->site_email }}
Phone: {{ $site->site_phone }}
TO:
{{ $o->account->company }}
{!! join('
',$o->account->address) !!}
Email: {{ $o->account->user->email }}
@if ($o->account->phone) Phone: {{ $o->account->phone }}
@endif
{{-- --}}
Issue Date:{{ $o->invoice_date->format('Y-m-d') }}
Account:{{ $o->account->sid }}
Invoice:{{ $o->lid }}
Payment Due:{{ $o->due_at->format('Y-m-d') }}
This Invoice Due:${{ number_format($o->total,$o->currency()->rounding) }}
Total Account Due:${{ number_format($o->account->due,$o->currency()->rounding) }}
@foreach ($o->products() as $po) @foreach ($o->product_services($po) as $so) @foreach ($o->product_service_items($po,$so) as $io) @endforeach @endforeach @endforeach
Qty Product Description Subtotal
{{ $po->count }} #{{ $po->lid }} {{ $po->name }} ${{ number_format($o->items->filter(function($item) use ($po) {return $item->product_id == $po->id; })->sum('total'),$o->currency()->rounding) }}
  Service: {{ $so->sid }}: [{{ $so->name }}]   ${{ number_format($o->product_service_items($po,$so)->sum('total'),$o->currency()->rounding) }}  
    {{ $io->item_type_name }} ${{ number_format($io->total,$o->currency()->rounding) }}  

Payment Methods:

@foreach (\App\Models\Checkout::available() as $cho) @endforeach
{{ $cho->name }} {{ $cho->description }} @includeIf('payment.widget.plugin.'.strtolower($cho->plugin),['o'=>$cho])

{!! $o->invoice_text !!}

@if($o->id) @endif
Subtotal: ${{ number_format($o->sub_total,$o->currency()->rounding) }}
  Tax (GST 10%) ${{ number_format($o->total_tax,$o->currency()->rounding) }}
  Other Charges: $0.00
Total: ${{ number_format($o->total,$o->currency()->rounding) }}
  Payments To Clear: ${{ number_format($o->paid_pending,$o->currency()->rounding) }}
  Payments: #{{ $o->payments->pluck('id')->join(', #') }} ${{ number_format($o->paid,$o->currency()->rounding) }}
Invoice Due: ${{ number_format($o->due,$o->currency()->rounding) }}
Print @if($o->id) Pay {{-- Download PDF --}} @endif
@endsection