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

Dashboard

{{$totalOrders ?? '0'}}

Total Orders

{{$pendingOrders ?? '0'}}

Pending Orders

0.00$

Discount Bonus

Recent Orders

@if($recentOrder) @else No Order Found! @endif
#Order Date Order Total Order Status View
{{$recentOrder->order_number ?? ''}} {{ optional($recentOrder)->paid_at ? \Carbon\Carbon::parse($recentOrder->paid_at)->format('d-m-y') : '' }} {{$recentOrder->grand_total ?? '0.00'}}$
@endsection