@extends('frontend.layouts.master') @section('content')

Management Team

@foreach ($team as $v) @if($v->team_type == "Management")

{{$v->name}}

{{$v->designation}}

@endif @endforeach

Faculty Team

@foreach ($team as $v) @if ($v->team_level == "bachelors")

{{ $v->name }}

{{ $v->designation }}

@endif @endforeach
@foreach ($team as $v) @if ($v->team_level == "masters")

{{ $v->name }}

{{ $v->designation }}

@endif @endforeach
@foreach ($team as $v) @if ($v->team_level == "phd")

{{ $v->name }}

{{ $v->designation }}

@endif @endforeach

Non Teaching Staff Team

@foreach ($team as $v) @if($v->team_type == "Staff")
{{-- --}}
{{--

Sofia Brawn

--}}

{{$v->name}}

{{$v->designation}}

@endif @endforeach
@endsection