@extends('admin.layout.base') @section('title', 'Users ') @section('content')
Back @if(Setting::get('demo_mode') == 1)
** Demo Mode : @lang('admin.demomode')
@endif
{{$company->company_name}} Users @if(Setting::get('demo_mode', 0) == 1) (*personal information hidden in demo) @endif
@php($page = ($pagination->currentPage-1)*$pagination->perPage) @foreach($corusers as $index => $user) @php($page++) @if(Setting::get('demo_mode', 0) == 1) @else @endif @if(Setting::get('demo_mode', 0) == 1) @else @endif @endforeach
@lang('admin.id') EmpID @lang('admin.first_name') @lang('admin.last_name') @lang('admin.email') @lang('admin.mobile') @lang('admin.action')
{{ $page }} {{ $user->emp_id}} {{ $user->first_name }} {{ $user->last_name }}{{ substr($user->email, 0, 3).'****'.substr($user->email, strpos($user->email, "@")) }}{{ $user->email }}+919876543210{{ $user->mobile }} Delete User
@lang('admin.id') EmpID @lang('admin.first_name') @lang('admin.last_name') @lang('admin.email') @lang('admin.mobile') @lang('admin.action')
@endsection @section('scripts') @endsection