@extends('layouts.app') @section('content')

{{$user_info['user_name']}} Balance Sheet

Balance Sheet

Back + Add Row {{-- Download CSV --}}
{{-- Flash Alert Message ----- START --}} @if(Session::has('danger'))
{{ Session::get('danger') }}
@elseif (Session::has('success'))
{{ Session::get('success') }}
@endif {{-- Flash Alert Message ----- END --}}
{{-- search box ----- START --}}
{{-- search box ----- END --}} {{-- TOTAL BALANCE box ----- START --}}
PKR
{{-- TOTAL BALANCE box ----- END --}} {{-- TOTAL CREDIT box ----- START --}}
PKR
{{-- TOTAL CREDIT box ----- END --}} {{-- TOTAL BILL box ----- START --}}
PKR
{{-- TOTAL BILL box ----- END --}} {{-- TOTAL WEIGHT box ----- START --}}
KGS
{{-- TOTAL WEIGHT box ----- END --}}
@foreach ($ledger as $item) @endforeach
Bill # Transaction Supplier Location Placement Date Particulars Claimed Product Unit Type Weight Rate Bill Payment Claim Balance
{{$item['bill_no']}} {{$item['transaction']}} {{$item['supplier_location']}} {{$item['placement_location']}} {{$item['date']}} {{$item['ledger_particular']}} {{$item['claimed_product']}} {{$item['unit_type']}} {{$item['weight']}} {{$item['rate']}} {{number_format($item['bill'])}} {{number_format($item['payment'])}} {{$item['claim']}} {{number_format($item['balance'])}}
{{$ledger->links()}}
{{-- ADD SUPPLIER-LEDGER MODAL ----- START --}} {{-- ADD SUPPLIER-LEDGER MODAL ----- END --}}
@include('nims.includes.footer') {{-- LIVE SEARCH SCRIPT --}} {{-- set the value of the drop downlist --}} {{-- Add Ledger Modal Script --}} {{-- table edit plugin function script --}} {{-- show transaction field if payment type is selected --}} @endsection