@extends('layouts.app') @section('content')

Day Wise Purchase Report

@include('validate')

Day Wise Purchase Report

@csrf
@forelse ($purchaseList as $purchase) @empty @endforelse
Date Branch Type Count Total Amount
{{ $purchase->purchase_date->format(app_date_format()) }} {{ $purchase->branch->branch_name ?? '' }} @if($purchase->is_estimate == 'yes') Estimate @else Invoice @endif {{ $purchase->invoice_count }} {{ number_format($purchase->total_grand_total,2) }}
@lang('general.no_details_found')
@csrf
@endsection