@extends('master') @section('content')

{{ __('Barangay Officials') }}

{{ __('View the official members of the barangay') }}

@foreach ($officials as $layer => $layerOfficials)
@foreach ($layerOfficials as $official)

{{ $official->name }}

{{ $official->position }}

{{ $official->start_term ? date('M. d, Y', strtotime($official->start_term)) : '' }} to {{ $official->end_term ? date('M. d, Y', strtotime($official->end_term)) : '' }}

@endforeach
@endforeach
@endsection