@extends('layout.master') @section('content')

Your Orders

@php $sum = 0; @endphp @forelse($orders as $order) @empty @endforelse
Image Product Name Until Price Qty Subtotal
@php($image = str_replace('\Menu Items Image\\', '', $order->dish_name->Photo)) {{ $order->dish_name->DishName }} £ {{ $order->TotalAmount }} {{ $order->Quantity }} £ {{ $order->TotalAmount * $order->Quantity }}
No orders
@endsection @section('scripts') @endsection