@extends('layouts.business.master') @section('title') {{ __('Purchase Reports') }} @endsection @section('main_content')

{{ __('Total Purchase') }}

{{ currency_format($total_purchase, currency: business_currency()) }}

{{ __('Purchase Report List') }}

@include('business::print.header')

{{ __('Purchase Report List') }}

@csrf
@if(auth()->user()->accessToMultiBranch()) @endif
@if(auth()->user()->accessToMultiBranch()) @endif @include('business::reports.purchase.datas')
{{ __('SL') }}.{{ __('Branch') }}{{ __('Invoice No') }} {{ __('Party Name') }} {{ __('Total Amount') }} {{ __('Discount Amount') }} {{ __('Paid Amount') }} {{ __('Due Amount') }} {{ __('Vat Amount') }} {{ __('Payment Type') }} {{ __('Purchase Date') }}
{{ $purchases->links('vendor.pagination.bootstrap-5') }}
@endsection