@extends('layouts.master') @section('navigation') @if(Auth::user()->role==1) @include('local.managers.admins._navigation') @elseif(Auth::user()->role==2) @include('local.managers.sCoords._navigation') @elseif(Auth::user()->role==3) @include('local.managers.pCoords._navigation') @else @include('local.professors._navigation') @endif @stop @section('main')

This report contains performance information for all your Program's assessed courses during the following semester(s):

@foreach($courses as $index2=>$course) whereNotNull('outcomes_attempted') ->whereRaw('outcomes_attempted not like \'%"'.$outcome->id.'":0%\'') ->with(array('activities'=>function($query) use(&$outcome){ $query->whereNotNull('outcomes_attempted'); $query->whereRaw('outcomes_attempted not like \'%"'.$outcome->id.'":0%\'');} )) ->where('code', $course->code)->where('number',$course->number) ->whereIn('semester_id', Session::get('semesters_ids')) ->get();*/ $sections_evaluating = Course::has('activities') //->whereNotNull('outcomes_attempted') //->whereRaw('outcomes_attempted not like \'%"'.$outcome->id.'":0%\'') ->with(array('activities'=>function($query) use(&$course){ $activities = DB::table('activities') ->join('activity_criterion', 'activity_criterion.activity_id', '=', 'activities.id') ->join('assessments', 'assessments.activity_criterion_id', '=','activity_criterion.id') //->join('criterion_objective_outcome', 'activity_criterion.criterion_id', '=', 'criterion_objective_outcome.criterion_id') ->join('courses','courses.id','=','activities.course_id') ->where('courses.code',$course->code) ->where('courses.number',$course->number) ->where('activities.draft',0) ->where('activities.diagnostic',0) //->where('criterion_objective_outcome.outcome_id', $outcome->id) ->select('activity_id') ->lists('activity_id'); //$query->whereNotNull('outcomes_attempted'); //$query->whereRaw('outcomes_attempted not like \'%"'.$outcome->id.'":0%\''); $query->whereIn('activities.id', $activities); } )) ->where('code', $course->code)->where('number',$course->number) ->where('user_id',Auth::user()->id) ->whereIn('semester_id', Session::get('semesters_ids')) ->orderBy('semester_id') ->get(); ?>
@foreach($sections_evaluating as $index3 => $section)

Course: {{$course->code}} {{$course->number}}-{{$section->section}}

publishedActivities); ?> @foreach($section->publishedActivities as $index4 => $activity)
Activity {{$index4+1}}:

{{$activity->name}} ({{$activity->date}})



Performance Indicators:
rubric[0]); ?>

{{$activity->rubric[0]->num_scales}} ( rubric[0]->getTitles(); ?> @if(sizeof($titles) != 1) @foreach ($titles as $index5=>$rubric_title) @if($index5!= ($activity->rubric[0]->num_scales)-1 ) {{$rubric_title->text}}, @else and {{$rubric_title->text}} @endif @endforeach ) @else {{$titles[0]->text}} ) @endif


Scale:
@if($activity->rubric[0]->max_score == 1)

1 point scale

@else

1-{{$activity->rubric[0]->max_score}} point scale

@endif

Perfomance by Learning Outcome Criteria

Target by criterion:

{{$activity->rubric[0]->expected_points}} or more


Expected percent of students achieving the target by criterion:

{{$activity->rubric[0]->expected_percentage}} %


@foreach($activity->allActivityCriterionInfo() as $index5=>$ac_criterion) criterion_id, $activity->id); $out_ach = Criterion::students_achieved($ac_criterion->criterion_id, $activity->id); $percentage = "N/A"; $activity->getOutcomeReport(); ?> @if($out_att==0) @else @if ($percentage>=$activity->rubric[0]->expected_percentage) @else @endif @endif @endforeach
Criterion Number of Students Assessed Number of students that achieved the target % Outcomes
{{$ac_criterion->name}} {{Criterion::students_attempted($ac_criterion->criterion_id, $activity->id)}} {{Criterion::students_achieved($ac_criterion->criterion_id, $activity->id)}} {{ $percentage }}{{ $percentage }}%{{ $percentage }}% @foreach(Criterion::outcomes($ac_criterion->criterion_id) as $index6=>$outcome) {{$index6 + 1}}. name."\n\n\n
" ?> @endforeach


Perfomance by Learning Outcome Student

Target by outcome:

>= 66.67% of the attempts


Expected percent of students achieving the target by outcome:

where('program_id', $course->program_id) ->where('semester_id', $course->semester_id) ->first();//->expected_target; if(!$expected){ $expected = "It has not been defined in the annual plan"; } ?> {{$expected}}


@foreach($activity->getOutcomeReport() as $outcome) @if($outcome->percentage>= $expected) @else @endif @endforeach
Outcome Number of Students Assessed Number of students that achieved the target %
{{$outcome->name}} {{$outcome->attempted}} {{$outcome->achieved}} {{ $outcome->percentage }}%{{ $outcome->percentage }}%


@endforeach @endforeach
@endforeach
@section('included-js') @include('global._datatables_js') @stop @stop @section('javascript') @stop