@extends('admin.layouts.master') @section('customer', 'active') @section('title') {{ $data['title'] ?? '' }} @endsection @push('style') @endpush @section('content')

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

Manage {{ $data['title'] ?? '' }}

@if (Auth::user()->can('admin.customer.create')) Add New @endif
@if (isset($data['rows']) && count($data['rows']) > 0) @foreach ($data['rows'] as $key => $row) @endforeach @endif
SL Name (Rating) Image Email Phone Total Ads Status Document Verification Full Photo Verification Register At Action
SL Name (Rating) Image Email Phone Total Ads Status Document Verification Full Photo Verification Register At Action
{{ $key + 1 }} {{ $row->name }} {{ $row->rating }} {{ $row->name }} {{ $row->email }} {{ $row->phone ?? 'N/A' }} {{$row->ads->count()}} @if ($row->status == 1) Active @else In Active @endif @if ($row->verification && $row->verification->document_verified == 1) Verified @else Not Verified @endif @if ($row->verification && $row->verification->photo_verified == 1) Verified @else Not Verified @endif {{ date('d-M-Y', strtotime($row->created_at)) }} {{-- @if (Auth::user()->can('admin.customer.view')) View @endif @if (Auth::user()->can('admin.customer.edit')) Edit @endif @if (Auth::user()->can('admin.customer.delete')) Delete @endif --}}
@endsection @push('script') @endpush