@extends('admin.layout.master') @section('title') Norman Admin | Dashboard @endsection @section('content')
| Salse Order | Order Count | Amount (INR) |
|---|---|---|
| Today | {{$todaysSales->total}} | {{($todaysSales->total_amount == '') ? 0 : $todaysSales->total_amount}} |
| Yesterday | {{$yesterdaySales->total}} | {{($yesterdaySales->total_amount == '') ? 0 : $yesterdaySales->total_amount}} |
| Week | {{$weekSales->total}} | {{($weekSales->total_amount == '') ? 0 : $weekSales->total_amount}} |
| Month | {{$monthSales->total}} | {{($monthSales->total_amount == '') ? 0 : $monthSales->total_amount}} |
| Year | {{$yearSales->total}} | {{($yearSales->total_amount == '') ? 0 : $yearSales->total_amount}} |