@extends('AdminLte.template') @section('title') Reduce Pharmacy Bills @endsection @section('ExternalCss') @parent @endsection @section('Content')

Reduce Pharmacy Bills


{{ Form::open(['action' => 'ReducingPharmacyBillsController@reducePhaBill','autocomplete' => 'off','id' => 'reducePhaBill']) }}
 


%


{{ Form::close() }}
@if(isset($taxDetails))

Tax Details

@foreach($taxDetails as $tax) @endforeach
Status Net Taxable SGST CGST Total
{{ $tax['status'] == 'B' ? 'Before Adjustment' : 'After Adjustment' }} {{ number_format($tax['net_taxable'], 2) }} {{ number_format($tax['sgst_amt'], 2) }} {{ number_format($tax['cgst_amt'], 2) }} {{ number_format($tax['total'], 2) }}
@endif
@if(isset($consideredBills))

Pharmacy Bills that are considered for Discount

From : {{ date('d-m-y', strtotime($fromDate)) }} To : {{ date('d-m-y', strtotime($toDate)) }} Discount Applied : {{ $discountApplied }}%
No of Bills
@foreach($consideredBills as $bills) {{$bills->trn_type.$bills->trn_id. ", "}} @endforeach

@endif
@if(session()->has('errorMessage'))
× {{ (session()->get('errorMessage'))}}
@endif @endsection @section('BootstrapModals') @endsection @section('ExternalJs') @endsection