@extends('../site/layouts.user_panel.app') @section('page_title', __('Orders')) @section('content')

{{ __('Your Orders') }}

{{ __('Take a look at all the orders you made, their status and much more..') }}

@if (count($orders) > 0 || request('filter_day') != null || request('filter_status') != null)

{{ __('Order list') }}

{{ __('Filter By') }}

@endif
@if (count($orders) == 0)
@if (request('filter_day') != null || request('filter_status') != null)

{{ __('No order found!') }}

@else

{{ __('No Orders!') }}

{{ __("You haven't ordered anything yet.") }}

@endif
@endif
{{ $orders->onEachSide(1)->links('site.layouts.partials.pagination') }}
@endsection