@extends('template')
@section('content')
Ordenes
- Todas
- Pendientes
- En tramite
@if($orders->count() > 0)
@foreach($orders as $order)
@endforeach
@else
No hay pedidos registrados
@endif
@endsection
@section('other-content')
@include('clients.includes.order-request')
@include('clients.includes.order-checkout')
@endsection