@extends('layouts.adminapp') @section('title') {{ __('lng.PurchaseReport') }} @endsection @section('active_report', 'active') @section('open_report', 'open') @section('open_products_report', 'open') @section('active_products_report', 'active') @section('active_purchase_report', 'active') @section('content')
{{ __('lng.SiNo') }} | {{ __('lng.Supplier') }} | {{ __('lng.Date') }} | {{ __('lng.Invoice') }} | {{ __('lng.Amount') }} | {{ __('lng.TaxAmount') }} | {{ __('lng.TotalAmount') }} | {{ __('lng.Action') }} |
---|---|---|---|---|---|---|---|
{{ ++$si }} | {{ $Purchase->Supplier->title ?? '' }} | {{ $Date }} | {{ $Purchase->invoicenumber }} | @currency($Purchase->amount) | @currency($Purchase->tax_amount) | @currency($Purchase->total_amount) |
{{ __('lng.Showing') }} {{ $Purchases->count() }} {{ __('lng.Items') }}