@extends('layouts.main') @section('content') @push('css') @endpush
Shop referel no : #5876432{{ $shop->id }}
Created Date: {{ \Carbon\Carbon::parse($shop->created_at)->format('d-m-Y H:i') }}
Status: ( {{ $shop->active == 1 ? 'Active' : 'Inactive' }} - {{ $shop->opened == 1 ? 'Opened' : 'Closed' }} )

{{ $shop->name }}

{{ $shop->email }}
{{ $shop->mobile }}

Shop Address
{{ $shop->name }}
{{ $shop->street }}, {{ $shop->area }},
{{ $shop->city }}
{{--
{{$order->cart->centre->user->email}}
{{$order->cart->centre->user->mobile}}
--}}
Shop Vendor Details
Name : {{ $shop->user->name }}
Email : {{ $shop->user->email }}
Mobile : {{ $shop->user->mobile }}

Pending Orders List

{{-- --}} {{-- --}} @forelse ($orders as $item) {{-- --}} @empty @endforelse
Order IDOrder StatusCustomer Prod Count Amount Commission Del Charge Discount Shop EarningsPaid
{{ $item->prefix . $item->id }}{{ $item->order_state }} {{ isset($item->user->mobile) ? $item->user->mobile : $item->user->email }} {{ $item->cart->products_count }} {{ $item->cart->total_amount }} ₹ {{ $item->comission }} ₹ {{ $item->cart->delivery_charge }} ₹ {{ $item->cart->coupon_amount }} ₹ {{ $item->shop_earned }} ₹
@push('scripts') @endpush

Total Products : {{ $shop->products_count }} {{-- {{$shop->products_count}} --}}
Total Orders Delivered {{ $shop->delivered_count }}

Total Earnings {{ round($shop->earnings, 2) }} ₹

Shop Earnings {{ round($shop->shop_earnings, 2) }} ₹

{{ config('app.name') }} Commission {{ round($shop->commission_earnings, 2) }} ₹

{{ config('app.name') }} Delivery Charges {{ $shop->delivery_charges }} ₹

{{ config('app.name') }} Discounts {{ $shop->total_discount }} ₹

Amount Paid to Shop {{ $shop->paid_earnings }} ₹

Pending Amount {{ $shop->pending_earnings }} ₹

Total Canceled Orders {{ $shop->canceled_count }}

Shop Ratings {{ $shop->rating_avg }}
{{--
--}}
{{-- --}} {{--
--}}
@push('scripts') @endpush @endsection