@extends('admin.layout') @section('custom-style') @endsection @section('content')

Staff Directory

All Contacts

@if(check_Permission('Staff Directory', 'create')) @endif
@if(\Session::has('delete'))
  • {!! \Session::get('delete') !!}
  • @endif
    @if(isset($contacts)) @foreach($contacts as $contact) @endforeach @endif
    S.No. Name Email Phone Id No. Staff No. Title Department Region Action
    {{$loop->iteration}} {{$contact->name}} {{$contact->email}} {{$contact->phone}} {{$contact->id_number}} {{$contact->staff_number}} {{$contact->title}} {{$contact->department}} {{$contact->region}} @if(check_Permission('Staff Directory', 'edit')) @endif @if(check_Permission('Staff Directory', 'delete')) @endif
    @endsection @section('custom-scripts') @endsection