@extends('layouts.master') @section('title', 'Internal Committee View') @section('style') @endsection @section('script') @endsection @section('content') @include('layouts.header') @include('layouts.title')

View Internal Committees

Academic Year Name :
{{ $internalcommittee->academic_name }}
Internal Committees Name :
{{ $internalcommittee->ic_name }}
Faculty Member Name :
    @foreach (explode(', ', $internalcommittee->faculty_names) as $name)
  1. {{ $name }}
  2. @endforeach
@if (!empty($internalcommittee->staff_names))
Staff Name :
    @foreach (explode(', ', $internalcommittee->staff_names) as $staff)
  1. {{ $staff }}
  2. @endforeach
@endif {{-- Documents --}}
Required Documents

File size maximum 10 MB (.PDF)

@if (!empty($internalcommittee->ic_documents))
1. Document View {{ $internalcommittee->ic_documents }}
@endif
@include('layouts.footer') @endsection