@extends('xinvoice::customer_invoice_layout') {{--@section('title', Helper::formatTitle(__('invoice.titles.invoice_list')))--}} @section('include_css') @endsection @section('content')

Request for Payment from PRAMIX IT

PRAMIX IT Solutions

No.222/A, Kurukulawa, Ragama, Gampaha, Sri Lanka

Mobile : +94 711 252 282 | Web : www.pramixit.com | Email : info@pramixit.com

{{$customer->fullname ?? ''}}
@if(isset($business_address->address_line_1) && $business_address->address_line_1 != '')
{{$business_address->address_line_1 ?? ''}}, @endif @if(isset($business_address->address_line_2) && $business_address->address_line_2 != '')
{{$business_address->address_line_2 ?? ''}}, @endif @if(isset($business_address->city_name) && $business_address->city_name != '')
{{$business_address->city_name ?? ''}}, @endif @if(isset($business_address->district_name) && $business_address->district_name != '')
{{$business_address->district_name ?? ''}},
@endif @if(isset($customer->email) && $customer->email != '') {{ __('xinvoice::invoice.labels.email')}}: {{$customer->email ?? ''}}
@endif @if(isset($customer->mobile) && $customer->mobile != '') Phone: {{$customer->mobile ?? ''}}
@endif @if(isset($customer->telephone) && $customer->telephone != '') Telephone: {{$customer->telephone ?? ''}} @endif

INVOICE

Invoice #: {{$invoice->invoice_code ?? ''}}

Invoice Date: {{$invoice->invoice_date ?? ''}}


@foreach($invoiceproducts as $product) @endforeach
Item Description Quantity Unit Price Sub Total Discount Amount
{{$product->product->item_code}} {{$product->description}} {{$product->qty}} {{\App\Http\Helper::formatPrice($product->unit_price)}} {{\App\Http\Helper::formatPrice($product->qty*$product->unit_price)}} @if($product->discount!='' || $product->discount!=0) @if($product->discount_type=='P') {{$product->discount}} % @else {{\App\Http\Helper::formatPrice($product->discount)}} @endif @else -- @endif {{\App\Http\Helper::formatPrice($product->sub_total)}}
@if($invoice->discount!='' && $invoice->discount!=0) @if($invoice->discount_type=='P') @else @endif @endif @if(!empty($invoice->vat_amount)) @endif @if(!empty($invoice->nbt_amount)) @endif
Subtotal {{\App\Http\Helper::formatPrice($invoice->sub_total)}}
Discount {{$invoice->discount}}% {{\App\Http\Helper::formatPrice($invoice->discount)}}
VAT Amount (15%) {{\App\Http\Helper::formatPrice($invoice->vat_amount)}}
NBT Amount (2%) {{\App\Http\Helper::formatPrice($invoice->nbt_amount)}}
Total {{\App\Http\Helper::formatPrice($invoice->total)}}
Paid Amount {{\App\Http\Helper::formatPrice($invoice->paid_amount)}}
Amount Due {{\App\Http\Helper::formatPrice($invoice->balance)}}
{!! $invoice->remarks!!}
Payment Method 1
Payment Method 2

Bank Transfer

Bank

Commercial Bank

A/C Name

PRAMIX

Branch

Ragama

A/C NO
1000017692

Cheque should be drawn to 'PRAMIX' 1000017692 (Commercial Bank)

Billing Address


{{formDropdown(__('xcustomer::customer.labels.country'), 'business_country', $countryList , $business_address->country ?? '' , array('class' => 'form-control select2', 'id' => 'business_country'))}}
@endsection @section('include_js') @endsection @section('custom_script') @endsection