@extends('crm.layout.base') @section('title', 'Users ') @section('content')
Total User
{{ $totaluser }}
Total Ride
{{ $totaltrip }}
Cancelled Ride
{{ $totalcanceltrip }}
  Users @if(Setting::get('demo_mode', 0) == 1) (*personal information hidden in demo) @endif

Add New @foreach($users as $index => $user) @if(Setting::get('demo_mode', 0) == 1) @else @endif @if(Setting::get('demo_mode', 0) == 1) @else @endif @endforeach
ID Name Email Mobile Rating Wallet Amount Action
{{ $index + 1 }} {{ $user->first_name }}{{ substr($user->email, 0, 3).'****'.substr($user->email, strpos($user->email, "@")) }}{{ $user->email }}+919876543210{{ $user->mobile }}{{ $user->rating }} ${{ $user->wallet_balance }}
{{ csrf_field() }}
@endsection