@extends('templates.'.$template.'.layouts.default') @section('content')
@include("templates.$template.account.common.tabs")

{{ trans('translations.my-orders') }}

@if(count($orders) > 0) @foreach ($orders as $order)
{{ trans('translations.order-no') }} {{ $order->id }}
{{ trans('translations.date') }} {{ $order->date }} | {{ trans('translations.total') }}: {{ $order->total }} Lei
@endforeach @else
{{ trans('translations.nu-ai-nicio-comanda') }}
@endif
@endsection {{-- Page script --}} @section('script') @endsection