@extends('admin.layout.app') @section('content')
{{$order->bill_id ?? ''}} Details
Order Restaurant Print Copy
@if(isset($order->bill_id)) Download Receipt @else

No receipt available.

@endif
Order Items
@foreach($order->orderitems as $item) @endforeach
Qty Item Rate Amount
{{$item->quantity ?? ''}} {{$item->item_name ?? ''}} {{$item->single_price ?? ''}} {{$item->total_amount ?? ''}}
@endsection