{{-- A good traveler has no fixed plans and is not intent upon arriving. --}} @if ($varView == '') @livewire('dashboard.components.top-bar', ['user_id' => session()->get('LoggedClient'), 'user_type' => 'App\Models\Client', 'activity' => ''])
@livewire('dashboard.components.general-report')

Pending Orders

{{-- --}}
@foreach($cols as $col) @if($col['isList'] == true) @endif @endforeach @if(count($pending_orders) > 0) @foreach ($pending_orders as $key=> $pending_order) @foreach($cols as $col) @if($col['isList'] == true) @if(isset($col['isKey'])) @else @if($col['type'] == 'date') @elseif(isset($col['isRelationship']) && $col['isRelationship'] == true) @elseif($col['colName'] == 'status') @else @endif @endif @endif @endforeach @endforeach @else @endif
{{$col['colCaption']}}Action
{{$pending_order[$col['colName']]}}
{{-- View --}}

*** No records found ***
{{ $pending_orders->links('components.pagination-links') }}

Orders

{{-- --}}
@if(count($others) > 0) @foreach ($others as $other) @endforeach @else @endif
Date Order ID Details Progress Action
{{-- Darknight transparency 36 Icons Pack --}}
@if ($other->status=='In progress') 85%
@elseif($other->status=='Complete') 100%
@endif

*** No records found ***
{{ $others->links('components.pagination-links') }}

Transactions

@if ($transactions != null) @foreach ($transactions as $transaction)
@if ($transaction->debited_amount != 0) Your Account Was Debited : @elseif($transaction->credited_amount != 0) Your Account Was Credited : @endif
1{{ $transaction->created_at->diffForHumans() }}
@if ($transaction->debited_amount != 0) +${{ $transaction->debited_amount }} @elseif($transaction->credited_amount != 0) -${{ $transaction->credited_amount }} @endif
@endforeach
No Recent Transactions
@endif View More
@elseif($varView == 'chat') {{-- @livewire('client.chat-order-summary') --}} @livewire('dashboard.pages.chat-order-sumry') @elseif($varView == 'edit-paper') @livewire('dashboard.pages.edit-order', ['oderId' => $editorderId]) @elseif($varView == 'pending-orders') @livewire('dashboard.pages.pending-orders') @elseif($varView == 'progress') @livewire('dashboard.pages.progress-orders') @elseif($varView == 'completed') @livewire('dashboard.pages.completed-orders') @elseif($varView == 'revisions') @livewire('dashboard.pages.revision-orders') @elseif($varView == 'profile') @livewire('dashboard.pages.profile') @endif