@extends('layouts.admin') @section('title','Admin Dashboard') @section('content')
| ID | Customer | Total | Status |
|---|---|---|---|
| {{ $order->id }} | {{ $order->nama_pelanggan }} | Rp {{ number_format($order->total_harga, 0, ',', '.') }} | @if($order->status == 'selesai') Completed @else Pending @endif |