@extends('front.layouts.app') @push('title', __('Order Details')) @section('content')
#{{__('OrderID')}}: {{ $order->order_id }}
@csrf @if ($order->file) @endif @if ($order->file_url) {{ __('Download File') }} @endif @if ($order->stocks) @endif
{{ json_decode($order->product)->qty }} x {{ json_decode($order->product)->name }} ({{ config('app.currency_symbol') }}{{ $order->total }}) @if($order->customer_answers) @endif {{ $order->created_at->format('d/m/Y H:i') }}
@if ($order->stocks) @foreach (json_decode($order->stocks) as $stock)
@endforeach @endif
@endsection