{{-- resources/views/employee/orders/show.blade.php --}} @extends('layouts.employee') @section('title', 'Order Details') @section('page_title', 'Order Details') @section('icon', 'fa-eye') @section('breadcrumb')
| Item | Price | Qty | Subtotal | Status |
|---|---|---|---|---|
|
{{ $item->menu->name }}
@if($item->notes)
{{ $item->notes }} @endif |
Rp {{ number_format($item->price, 0, ',', '.') }} | {{ $item->quantity }} | Rp {{ number_format($item->price * $item->quantity, 0, ',', '.') }} | {{ ucfirst($item->status) }} |