@extends('backend.layouts.app') @section('content') @if(env('MAIL_USERNAME') == null && env('MAIL_PASSWORD') == null)
{{translate('Please Configure SMTP Setting to work all email sending functionality')}}, {{ translate('Configure Now') }}
@endif

Welcome Back {{auth()->user()->name}}

Here's what's happening with your portal today.

Total Listing

{{--
+16.24 %
--}}

{{--
--}}

Total Offer Listing

{{--
-3.57 %
--}}

{{--
--}}

Total Demand Listing

{{--
+29.08 %
--}}

{{-- See details --}}
{{--
--}}

All Vendors

{{--
+0.00 %
--}}

{{-- See Details --}}
{{--
--}}
{{--

Revenue

0

Orders

$0k

Earnings

0

Refunds

0%

Conversation Ratio

Sales by Locations

Canada 75%

Greenland 47%

Russia 82%

--}}
@if($vendors->isNotEmpty()) @foreach ($vendors as $key => $vendor) {{-- {{ dump($vendor->bs_domains) }} --}} @endforeach @endif
@if ($vendor->country != null) @endif
{{ $vendor->name }}
{{ date("d M Y", strtotime($vendor->created_at)) }}
{{ $vendor->email }}
Email
{{ $vendor->listings->count() }}
Listings
{{ $vendor->bs_domains->count() }}
Business Domains
{{--
Showing 5 of 25 Results
--}}

Latest Bussiness Domain

@if($domains->isNotEmpty()) @foreach ($domains as $key => $domain) @endforeach @endif
{{ $domain->name }}
{{ date("d F Y", strtotime($domain->created_at)) }}
{{ $domain->business_activity->count() }}
Have Business Activity
{{--
Showing 5 of 25 Results
--}}
{{--

Store Visits by Source

--}}

Latest Listing

{{--
--}}
@if($listings->isNotEmpty()) @foreach($listings as $listing) @endforeach @endif
Listing ID Vendor Name Listing Type Added By Added At
{{ $listing->list_id ?? 'N/A' }}
{{ $listing->vendor == null ? $listing->vendor : $listing->vendor->name }}
@if($listing->listing_type == 'demand') {{ucfirst( $listing->listing_type) }} @elseif($listing->listing_type == 'offer') {{ ucfirst($listing->listing_type) }} @else {{ ucfirst($listing->listing_type) }} @endif {{ ucfirst($listing->created_by) }} {{ date('F d, Y', strtotime($listing->updated_at)) }}
@endsection @section('script') @endsection