@extends('admin.layouts.container') @section('content')

{{ $head ?? '' }}

{{__('orders.user_info')}}

{{$order->user->phone}}


{{__('orders.order_info')}}

{{$order->id}}

{{$order->start_time .' - '.$order->end_time}}

@if($payment->cobon_id)

{{$payment->discount .' ( '.$payment->cobon->code.')'}}

@endif

{{__('orders.'.$order->status)}}

@if($order->status == 'pickup')

{{$order->date . ' : '. $order->start_time . ' - '.$order->end_time}}

@endif @if($order->status == 'table')

{{$order->table->number}}

@endif @if($order->status == 'room')

{{$order->room->room_id}}

@endif

{{date('Y/m/d',strtotime($order->created_at)) }}


{{__('orders.bill_info')}}

{{$payment->total_products}}

@if($payment->discount > 0)

{{$payment->discount}}

@endif

{{$payment->tax}}

{{$payment->total}}


{{__('orders.products_info')}}
@foreach($products as $i=>$product)
@endforeach
{{-- End replies container--}}
@endsection @section('inner_js') - @endsection