@extends('Layouts.adminDashboardLayout') @section('content')
All Users
{{--

Projects Have tasks contained in them. The tasks are tracked

--}}

@foreach($users as $user) @endforeach {{-- Mark as Completed--}}
Name Email Status Role Action
{{$user->firstname}} {{$user->lastname}} {{$user->email}} @if($user->suspend == 1) Suspended @else Active @endif {{$user->user_role}} @if(Auth::id() != $user->id) Delete @endif
{{--Create task modal--}} {{--create task modal end--}} @include('includes.alerts') @endsection @section('script') @endsection