@extends('front.pages.account.index') @section('account_title') {{__('Orders')}} @endsection @section('css') @endsection @section('account_content')

{{__('pending orders')}}

{{$pending_count}}

{{__('Hold orders')}}

{{$hold_count}}

{{__('Canceled')}}

{{$canceled_count}}

{{__('Confirmed orders')}}

{{$confirmed_count}}

{{__('Sending')}}

{{$shipping_count}}

{{__('Delivered')}}

{{$delivered_count}}

{{__('The price is being received')}}

{{$the_price_being_received_count}}

{{--

{{__('Commission Paid')}}

{{$canceled_count}}

--}}
@foreach($orders as $order) @endforeach
# {{__('Customer Name')}} {{__('Commission')}} {{__('Status')}} {{__('Created at')}} {{__('Details')}} {{__('Edit Order')}} {{__('Change Status')}} {{__('Return Product')}}
#{{$order->order_id}} {{$order->name}} {{formated_price($order->commission)}} {{$order->getStatus()}} {{date('d/m/Y',strtotime($order->created_at))}} @if($order['status']==1) @else {{__('Not Available')}} @endif @if($order['status']==3||$order['status']==7) @else

{{__('Not Available')}}

@endif
@endsection @section('account_scripts') @endsection