@extends('layouts.admin') @section('header-content') @endsection @section('content')
Filter

Sales Summary
@if(!empty($tenures[0]))
@foreach($tenures as $key=>$tenure) @endforeach {{----}}
Product Code Sales (Quantity )
{{$tenure->product}} @php $rem=0; $rem=($tenure->quantity)%12 @endphp {{round(($tenure->quantity)/12).' Dozen ' }} @if(!empty($rem) && $rem!=0) {{(' + '.$rem . ' piece ')}} @endif
Total Invoice:{{$invoice}}

Total due
Subtotal: {{round($price,2)}}
Discount: {{round($discount,2)}}
Total:
{{round($payment,2)}}
@else

No Records Found

@endif
@endsection @section('footer-content') @endsection