@extends('layouts.app')
@section('title', 'Dashboard')
@section('headSource')
@endsection
@section('content')
@if(Auth::user()->role=='SuperAdmin')
@endif
@if(Auth::user()->role == 'SuperAdmin' || Auth::user()->role == 'Coordinator' || Auth::user()->role == 'Executive')
@if(Auth::user()->role != 'Executive')
@endif
@endif
@if(Auth::user()->role!='Admin')
@endif
@if(Auth::user()->role=='SuperAdmin')
@endif
@if(Auth::user()->role=='SuperAdmin' || Auth::user()->role=='Coordinator' || Auth::user()->role=='Executive')
@endif
@if(Auth::user()->role=='SuperAdmin')
| Sr |
Name |
Email |
Total Sheet Submits |
Action |
@foreach($last7DaysStaff as $staff)
| {{$loop->iteration}} |
{{$staff->name}} |
{{$staff->email}} |
{{$staff->sheetCount}} |
|
@endforeach
@endif
@endsection
@section('footerSource')
@endsection