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

Projects Have tasks contained in them. The tasks are tracked

--}}

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