@extends('admin.layouts.panel') @section('head') Wellcome to applikasi admin laundyku @endsection @section('body')

Rumah Cuci Si Mamak

Selamat datang kembali di aplikasi Rumah Cuci Si Mamak

{{ $orders }}


Transaction

{{ $customer }}


Costumer

{{ $product }}


Product

Waiting Order

@if ($orderswaiting->isEmpty())

Tidak ada pesanan dengan status "waiting".

@else @foreach ($orderswaiting as $index => $order) @endforeach
NO Invoice Pelanggan Tanggal Berat(KG) Harga/KG Status Grand Total
{{ $index + 1 }} {{ $order->invoice }} {{ $order->username }} {{ $order->created_at->format('d M Y H:i') }} {{ $order->weight }} {{ $order->price }}
@csrf @method('PUT')
Rp{{ number_format($order->grand_total, 0, ',', '.') }}
@endif
@endsection @section('script') @endsection