@extends('layouts.master')
@section('navigation')
@if(Auth::user()->role==1)
@include('local.managers.admins._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')
Outcomes |
Learning Objectives |
Transformative Actions |
Expected Metric |
@foreach ($outcomes as $outcome)
@foreach ($outcome->objectives as $i => $objective)
@if ($i == 0)
{{ $outcome->name }} |
@endif
{{ $objective->text }} |
{{-- TODO: Use correct data--}}
{{ 'TODO' }} |
{{ $outcome->expected_outcome }} |
@endforeach
@endforeach
@stop
@section('included-js')
@include('global._datatables_js')
@stop
@section('javascript')
// ------------------------------------------------------------------------
// Page Load
// ------------------------------------------------------------------------
// ------------------------------------------------------------------------
// Events
// ------------------------------------------------------------------------
// ------------------------------------------------------------------------
// Functions
// ------------------------------------------------------------------------
@stop