@extends('layouts.app') @section('page-pretitle', __('Management')) @section('page-title', __('Team Member')) @section('content')
| # | {{ __('Name') }} | {{ __('Email') }} | {{ __('Assigned Projects') }} | {{ __('Role') }} | {{--{{ __('Position') }} | --}}{{ __('Status') }} | @if(auth()->user()->role === 'admin'){{ __('Action') }} | @endif {{--{{ __('Action') }} | --}}
|---|---|---|---|---|---|---|---|---|
| {{ $key + $users->firstItem() }} | {{ $user->name }} | {{ $user->email }} | {{ $user->projects->count() }} | {{ ucfirst($user->role) }} | {{--{{ $user->position ?? '-' }} | --}}{{-- {{ ucfirst($user->user_status) }} --}} {{ ucfirst($user->user_status) }} | @if(auth()->user()->role === 'admin')
|
@endif
|
| {{ __('No Record') }} | ||||||||