@extends('admin.layout') @section('custom-style') @endsection @section('content') Staff Directory Staff All All Contacts @if(check_Permission('Staff Directory', 'create')) Add New Staff @endif @if(\Session::has('delete')) {!! \Session::get('delete') !!} @endif S.No. Name Email Phone Id No. Staff No. Title Department Region Action @if(isset($contacts)) @foreach($contacts as $contact) {{$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 @endforeach @endif @endsection @section('custom-scripts') @endsection