@extends('master.app') @section('title', 'customer') @section('pageCSS') @endsection @section('body')
Summary
Print Invoice Print Here
  • Customer Name {{ $bill->customer->name }}
  • Customer Phone {{ $bill->customer->phone }}
  • Customer Address {{ $bill->customer->address }}
  • Invoice Number {{ $bill->invoice_number }}
  • Recived By {{ $bill->received_by }}
  • Date {{ $bill->invoice_date }}
  • Payment Type @if ($bill->transaction_id == 1) {{ 'By Bank' }} @elseif($bill->transaction_id == 2) {{ 'By Cash' }} @else {{ 'Sharafi' }} @endif
  • Garand Total
    {{ $bill->currency->title_en . ' ' . $bill->grand_total }}
  • Discount
    {{ $bill->currency->title_en . ' ' . $bill->discount }}
  • Total
    {{ $bill->currency->title_en . ' ' . $bill->final_amount }}
  • Recieved
    {{ $bill->currency->title_en . ' ' . $bill->received }}
  • Balance
    {{ $bill->currency->title_en }}{{ $bill->final_amount - $bill->received }}
Items @if ($bill->type_id == 1) @endif @foreach ($bill_items as $row) @if ($bill->type_id == 1) @if ($bill->type_id == 1) @else @endif @endforeach
# CatSub/Cat WeightUnit QTY Price Total
{{ $loop->iteration }} {{ $row->category->title_en }} {{ $row->sub_category->title_en }} {{ $row->weight->title_en }} @endif {{ $row->unit->title_en }} {{ $row->qty }}{{ $row->sale_price }}{{ $row->spi }}{{ $row->total }}
@include('sale.bills.bill-modal') @endsection @section('pageJs') @endsection