@extends('inner_layout') @section('title') {{ __('User Dashboard') }} @endsection @section('frontend_content')
@include('user.sidebar')

{{ $order_count ?? 0 }}

{{ __('Total Orders') }}

{{ $pending_orders ?? 0 }}

{{ __('Pending Orders') }}

{{ $complete_orders ?? 0 }}

{{ __('Complete Orders') }}

@if($orders->isEmpty()) @else @include('user._with_dashboard_order') @endif
@endsection