@extends('layout.app') @section('content')
|
@endif
BILL {{ $invoice->provider->company_name ?? '' }} {{ $invoice->provider->address ?? '' }} Mobile No:{{ $invoice->provider->phone_no ?? '' }} Email: {{ $invoice->provider->email ?? '' }} |
@if (!empty(siteinfo()))
BILL TO {{ siteinfo()->name }} Mobile Number: {{ siteinfo()->mobile }} Email: {{ siteinfo()->email }} Address: {{ siteinfo()->address }} @endif |
|
Item | Quantity | Price | VAT(%) | Amount |
{{ $item->service->name ?? '' }} |
{{ $item->quantity ?? '' }} | {{ $item->rate ?? '' }} | {{ $item->vat ?? '' }} | @php $value = 0; $price = $item->rate * $item->vat; $price_vat = $price / 100; $price_with_vat = $price_vat + $item->rate; $value = $price_with_vat * $item->quantity; @endphp{{ $value ?? '' }} |
Total Amount | {{ $invoice->subTotal }} | |||
Paid Amount | {{ $invoice->marketing_total }} | |||
Amount Due(BDT) | {{ $total }} |