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

{{ $totalOrders }}

Total Orders

More info

{{ $totalUsers }}

Customers

More info

Recent Orders

@foreach($orders as $order) @endforeach
ID Customer Total Status
{{ $order->id }} {{ $order->nama_pelanggan }} Rp {{ number_format($order->total_harga, 0, ',', '.') }} @if($order->status == 'selesai') Completed @else Pending @endif
@endsection