@extends('front.layout') @section('meta-keywords', "$seo->meta_keywords") @section('meta-description', "$seo->meta_description") @section('style') @endsection @section('content')

{{ __('Dashboard') }}

@includeif('user.dashboard-sidenav')
@if( $visibility->is_shop == 1)

{{ __('Total Product Order') }}

{{ $orders->count() }}
@foreach ($orders as $id=>$order) @endforeach
{{ __('Order Number') }} {{ __('Total') }} {{ __('Quintity') }} {{ __('Payment Status') }} {{ __('Action') }}
{{$order->order_number}} {{$order->currency_sign}} {{$order->total}} {{ $order->qty }} @if($order->payment_status == 0) {{ __('Pending') }} @elseif($order->payment_status == 1) {{ __('Paid') }} @endif
@endif
@endsection @section('script') @endsection