@extends('layouts.app') @section('content')

Client

@forelse($client as $key=>$user) @php if($user->status == 1) { $status = 'Active'; $color = 'success'; } else{ $status = 'InActive'; $color = 'danger'; } @endphp @empty @endforelse
# Name Mobile Member Since Status Action
{{ $key+1 }} {{ $user->seller_name }} {{ $user->phone_number }} {{ date('d-M-Y h:i ', strtotime($user->created_at)) }}
{{ $status }}
@endsection