@extends('website.layouts.app') @section('content') @include('website.layouts.crumb')
@include('admin.layouts.error')

{{ trans('home.myAccount') }}

{{ trans('home.myOrders') }}

@foreach ($orders as $order) @endforeach
{{ trans('home.order_code') }} {{ trans('admin.price') }} {{ trans('home.tax') }} {{ trans('home.total') }}
{{ $order->order_code }} {{ $order->price . ' ' . trans('admin.LE') }} {{ $order->tax . ' ' . trans('admin.LE') }} {{ $order->total_price . ' ' . trans('admin.LE') }} {{ trans('home.more') }}
{{ $orders->links() }}

{{ trans('home.editProfile') }}

@endsection