12345678910111213141516171819202122232425262728293031 |
- @extends('layouts.master')
-
- @section('navigation')
- @if (Auth::user()->role == 1)
- @include('local.managers.admins._new_navigation')
- @elseif(Auth::user()->role == 2)
- @include('local.managers.sCoords._new_navigation')
- @elseif(Auth::user()->role == 3)
- @include('local.managers.pCoords._new_navigation')
- @endif
- @stop
-
- @section('main')
- <div class="row">
- <div class="col-md-12">
- <p>Click the links below to see the reports on Annual Plans </p>
-
- <p>Due to the large amount of information in these reports, please allow them to load a few seconds.</p>
-
- <ol id="table-of-contents" class="upper-roman">
- @foreach ($programs as $program)
- <li>
- <a href="{{ URL::action('OutcomesController@annualReport', [$program->id]) }}">
- {{ $program->name }}
- </a>
- </li>
- @endforeach
- </ol>
- </div>
- </div>
- @stop
|