@extends('layouts.app') @section('keywords', '') @section('description', '') @section('content') {{--
--}} {{-- First slide--}} {{--
--}} {{--

Hello {{ Auth::user()->username }}

--}} {{--
--}} {{--
--}}

Hello {{ Auth::user()->first_name . ' ' . Auth::user()->last_name }} ({{ Auth::user()->username }})

Board:

Previous Board No:

{{ $board->board_number }}

{{ $board->previous_board_number }}

Previous GRAD:

Board Status:

Username

{{ ucfirst($board->status) }}

    @foreach($boardGrad as $key => $grad)
  • {{$grad['user']->username}}

    {{ ($key + 1) }}

    Grad

      @php $x = $y = 1 @endphp @foreach($grad->boardChildren(Request::segment(2)) as $key => $pregrad)
    • {{$pregrad['user']->username}}

      {{ ($key + 1) }}

      Pregrads

        @foreach($pregrad->boardChildren(Request::segment(2)) as $undergrad)
      • {{$undergrad['user']->username}}

        {{ ($x++) }}

        undergrads

          @forelse($undergrad->boardChildren(Request::segment(2)) as $key => $newbie)
        • {{$newbie['user']->username}}

          {{ ($y++) }}

          Newbies

        • @if($undergrad->boardChildren(Request::segment(2))->count() == 1)
        • No Invitee

          {{ ($y++) }}

          Newbies

        • @endif @empty
        • No Invitee

          {{ ($y++) }}

          Newbies

        • No Invitee

          {{ ($y++) }}

          Newbies

        • @endforelse
      • @endforeach
    • @endforeach
  • @endforeach
@endsection