@extends('layouts.adminapp') @section('title') {{ __('lng.SupplierReport') }} - {{ __('lng.Print') }} @endsection @section('active_report', 'active') @section('open_report', 'open') @section('open_products_report', 'open') @section('active_products_report', 'active') @section('active_supplier_report', 'active') @section('content')

{{ __('lng.Print') }}

@include('PrintHeader.header')

{{__('lng.SupplierReport')}}

@php $si=0; @endphp @foreach ($Suppliers as $Supplier) @endforeach
{{ __('lng.SiNo') }} {{ __('lng.Title') }} {{ __('lng.Group') }} {{ __('lng.OpeningBalance') }} {{ __('lng.DR/CR') }} {{ __('lng.Narration') }}
{{ ++$si }} {{ $Supplier->title }} {{ $Supplier->accountgroup->title }} @currency($Supplier->openingbalance) {{ $Supplier->DRorCR }} {{ $Supplier->narration }}
{{ __('lng.Back') }}
@endsection