@extends('layouts.default') @section('content')

{{Lang::get('messages.orders')}}

@include('notifications')
@if($saleProduct->isEmpty())

{{Lang::get('messages.no_order_yet')}}

@else @foreach($saleProduct as $key=>$sale) @endforeach
# {{Lang::get('messages.order')}} ID {{Lang::get('messages.title')}} {{Lang::get('messages.price')}} {{Lang::get('messages.purchase_date')}} {{Lang::get('messages.status')}}
{{$key}} {{$sale->id}} {{$sale->product->name}} ${{$sale->total_price}} {{$sale->created_at}} {{Lang::get('messages.pending')}} {{Lang::get('messages.preparing_order')}} {{Lang::get('messages.shipped')}} {{Lang::get('messages.tracking_number')}}: {{$sale->tracking_number}} {{Lang::get('messages.refund')}}
{{ $saleProduct->links(); }} @endif
@stop @section('footer_js') @stop