@extends('admin.layout') @section('title', 'Dashboard') @section('content')

Dashboard

{{ now()->format('d M Y') }}

{{ $totalProducts }}

Total Products

{{ $totalUsers }}

Total Users

{{ $totalOrder }}

Total Pesanan

Recent Products
@if ($recentProducts->count() > 0)
@foreach ($recentProducts as $product) @endforeach
Image Name Price Stock
{{ $product->name }} {{ $product->name }} Rp {{ number_format($product->price, 0, ',', '.') }} {{ $product->stock }}
@else

No products found.

@endif
@endsection