@extends('layouts.admin') @section('page-title', 'Reports') @section('content')

Reports

Export CSV
@if ($type === 'sales')
@endif
@if ($summary)
Total Orders
{{ $summary['total_orders'] }}
Total Sales
₹{{ number_format($summary['total_sales'],2) }}
Total GST
₹{{ number_format($summary['total_gst'],2) }}
Total Qty
{{ $summary['total_qty'] }}
@endif
@if ($rows->isNotEmpty()) @foreach (array_keys($rows->first()) as $col) @endforeach @endif @forelse ($rows as $row) @foreach ($row as $val)@endforeach @empty @endforelse
{{ ucwords(str_replace('_',' ',$col)) }}
{{ $val }}
No data for this report
@endsection