@extends('backend.layout') @section('content') @if (Session::has('success'))
×

{{ Session::get('success') }}

@endif

Customers List

@if( $customers->count()>0) @foreach($customers as $new) @endforeach
Customer Name Customer Type Phone Status Last Seen Join Date City Login ACTION
{{$new->name}} @if ($new->role == 'user') Individual User @else Corporate User @endif {{$new->phone}} @if(Cache::has('is_online' . $new->id)) Online @else Offline @endif {{ \Carbon\Carbon::parse($new->last_seen)->diffForHumans() }} {{$new->join_date}} {{\App\Models\Cities::where(['id' => $new->city_id])->pluck('name')->first()}} user_status ? 'checked' : '' }}>
@else
{{"Currently No Records Available"}}
@endif @endsection