@extends('master') @section('seo_title', __('messages.MY_ACCOUNT')) @section('seo_keywords', '') @section('seo_description', '') @section('content')
@include('layout.breadcrumbs', ['page_title' => __('messages.MY_ACCOUNT')])
@include('account.dashboard.sidebar')

@lang('messages.YOUR_ORDER')

@if (count($orders) > 0) @foreach ($orders as $order) @endforeach
Order ID
@lang('messages.ORDER_HISTORY_DATEHOUR')
@lang('messages.ORDER_HISTORY_PAYMENT')
@lang('messages.ORDER_HISTORY_STATUS')
@lang('messages.ORDER_HISTORY_FINALTOTAL')
{{ $order->nid }} {{ (new DateTime($order->datahora_conclusao))->format("d/m/Y H:i") }} {{ $order->pagamento }} {{ $order->statusHuman }} € {{ number_format(round($order->total_final, 2), 2, ",", ".") }}
@else

@lang('messages.ORDER_HISTORY_NO_ORDERS').

@endif
@endsection