{% extends 'chef/dashboard.html.twig' %} {% block title %}Client Info{% endblock %} {% block dashboard_content %}
Name: {{ client.name }}
Email: {{ client.email }}
Phone: {{ client.phoneNumber }}
Address: {{ client.address }}
Country: {{ client.country }}
City: {{ client.city }}
Postal Code: {{ client.postalCode }}
Menu: {{ order.dish.menu.title }}
Dish: {{ order.dish.name }}
Quantity: {{ order.quantity }}
Total: {{ order.totalAmount }}
Payment: {{ order.paymentType }} / {{ order.paymentStatus }}
Status: {{ order.status|capitalize }}
Reservation Date: {{ order.pickupDate ? order.pickupDate|date('Y-m-d H:i') : 'Not set' }}
Order Created: {{ order.createdAt|date('Y-m-d H:i') }}