@extends('admin.layouts.master') @section('dashboard', 'active') @section('title') {{ $data['title'] ?? '' }} @endsection @section('content')
{{--

{{ $data['title'] ?? 'Page Header' }}

--}}
Wellcome Back, {{Auth::user()->name}}
{{--
Total Listing ads 00
Total Region {{ $data['region_count'] }}
Total City {{ $data['city_count'] }}
Total Users {{ $data['users_count'] }}
Verified Users {{ $data['users_v_count'] }}
Total Blog Post {{ $data['blog_count'] }}
Total Custome Page {{ $data['cpage_count'] }}
--}}

Latest Ads

@foreach ($data['ads'] as $item) @endforeach
Thumbnail Title Price Category Location Username Status Verification Status Actions
Thumbnail Title Price Category Location Username Status Verification Status Actions
{{ $item->title }} @if ($item->negotiable == '1') Negotiable @else @if ($item->category_slug == 'jobs') N/A @else {{ $setting->currency_symbol }} {{ $item->price }} @endif @endif {{ $item->belongsToCategory->name }}
{{$item->belongsToSubCategory->name}}
{{ $item->belongsToRegion->name }}
{{ $item->belongsToCity?->name}}
{{ $item->belongsToUser->name }} @if ($item->status == 'active') Active @elseif ($item->status == 'pending') Pending @elseif ($item->status == 'sold') Sold @else Declined @endif @if ($item->verification_status == 'verified') Verified @elseif ($item->verification_status == 'pending') Pending @else Declined @endif
@endsection