@extends('master.app') @section('title', 'customer') @section('body')
Summary
  • Customer Name {{ $bill->customer->name }}
  • Customer Phone {{ $bill->customer->phone }}
  • Customer Address {{ $bill->customer->address }}
  • Invoice Number {{ $bill->invoice_number }}
  • Return By {{ $bill->return_by }}
  • Payment Type @if ($bill->transaction_id == 1) {{ 'By Bank' }} @elseif($bill->transaction_id == 2) {{ 'By Cash' }} @else {{ 'Sharafi' }} @endif
  • Total Items {{ $bill_items->sum('quantity') }}
  • Garand Total
    {{ $bill->amount }}

Items

@foreach ($bill_items as $row) @endforeach
# Cat Sub/Cat QTY Price Total Actions
{{ $loop->iteration }} {{ $row->category->title_en }} {{ $row->sub_category->title_en }} {{ $row->qty }} {{ $row->price }} {{ $row->total }}
@include('sale.customers.bills.bill-modal') @endsection @section('pageJs') @endsection