@extends('layouts.dashboard') @section('title', 'Users Management') @section('content')
entries

Users Management

@foreach ($users as $user) @endforeach
S/No Name User Info User Role User Target Action
{{ $users->firstItem() + $loop->index }}
User Image {{ $user->name }}
Email: {{ $user->email }} Phone: {{ $user->phone_number }} SEO Experience: {{ $user->company_experience }} Perior Experience: {{ $user->experience }} Date Of Joining: {{ $user->date_of_joining }} Disable Login: @if ($user->disable_login) Yes @else No @endif View All Projects: {{ $user->allow_all_projects ? 'Yes' : 'No' }} Special Permission: @if ($user->roles->contains('name', 'Admin')) Yes @else No @endif Role: {{ $user->roles->pluck('name')->first() }} Dept: {{ $user->department->name ?? '-' }} Emp Code: {{ $user->employee_code }} Reporting: {{ optional($user->reportingPerson)->name ?? '-' }}
Monthly: {{ $user->monthly_target }}
Incentive: {{ $user->upsell_incentive }}%
@if ($users instanceof \Illuminate\Pagination\LengthAwarePaginator && $users->total() > 10) @endif
@endsection @section('scripts') @endsection