@extends('layouts.app') @section('title', 'Officials | KDHC') @section('content')
@if (isset($officials) && count($officials) > 0)
@foreach ($officials as $key => $value) @endforeach
Officials
# Name Phone number Email
{{ $key + 1 }} {{ $value->name }} {{ $value->contact }} {{ $value->email }}
@else
No officials registered
@endif
@endsection