@extends('site.layout.layout') @section('title',__('My Orders')) @section('content')

{{ __('My Orders') }}

{{ __('Check the delivery status of your products and the dates of your orders.') }}

{{ __('Orders') }} {{ $orders->total() }}

@include('site.orders.order_cards',['orders' => $orders])
@if($orders->hasMorePages()) @php $total = $orders->total(); $perPage = $orders->perPage(); $currentPage = $orders->currentPage(); $shown = $currentPage * $perPage; $shown = $shown > $total ? $total : $shown; $percentage = $total > 0 ? round(($shown / $total) * 100) : 0; @endphp

{{ __('Total ') }} {{ $shown }} / {{ $total }} {{ __('product') }}

@endif
@endsection @push('scripts') @endpush