@extends('admin::layouts.app')
@section('content')
@forelse($users as $key => $user)
#
Name
Total Branch Count
Address
Total Staff
Status
Created At
@empty
{{ $key + 1 }}
{{ ucfirst($user->name) }}
{{ $user->branches_count ? $user->branches_count : 0 }}
{{ $user->business_location }}
{{ $user->staff_users_count }}
{{ ucfirst($user->status) }}
{{ $user->created_at ? Modules\Admin\Helpers\GeneralHelper::dateFormat($user->created_at) : '-' }}
@endforelse