@extends('account.layout')
@section('page_title', __('firstcop.account.my_orders'))
@section('account.content')
Mes commandes
@if($orders['waiting']->count() > 0)
@include('account.orders.list', ['orders' => $orders['waiting'], 'title' => 'Commandes en attente de paiement'])
@endif
@if($orders['paid']->count() > 0)
@include('account.orders.list', ['orders' => $orders['paid'], 'title' => 'Commandes payées'])
@endif
@if($orders['finished']->count() > 0)
@include('account.orders.list', ['orders' => $orders['finished'], 'title' => 'Commandes terminées'])
@endif
@if($orders['canceled']->count() > 0)
@include('account.orders.list', ['orders' => $orders['canceled'], 'title' => 'Commandes annulées'])
@endif
@endsection