|
@@ -49,14 +49,14 @@
|
49
|
49
|
<?php
|
50
|
50
|
|
51
|
51
|
/*$sections_evaluating = Course::has('activities')
|
52
|
|
- ->whereNotNull('outcomes_attempted')
|
53
|
|
- ->whereRaw('outcomes_attempted not like \'%"'.$outcome->id.'":0%\'')
|
54
|
|
- ->with(array('activities'=>function($query) use(&$outcome){
|
55
|
|
- $query->whereNotNull('outcomes_attempted');
|
56
|
|
- $query->whereRaw('outcomes_attempted not like \'%"'.$outcome->id.'":0%\'');} ))
|
57
|
|
- ->where('code', $course->code)->where('number',$course->number)
|
58
|
|
- ->whereIn('semester_id', Session::get('semesters_ids'))
|
59
|
|
- ->get();*/
|
|
52
|
+ ->whereNotNull('outcomes_attempted')
|
|
53
|
+ ->whereRaw('outcomes_attempted not like \'%"'.$outcome->id.'":0%\'')
|
|
54
|
+ ->with(array('activities'=>function($query) use(&$outcome){
|
|
55
|
+ $query->whereNotNull('outcomes_attempted');
|
|
56
|
+ $query->whereRaw('outcomes_attempted not like \'%"'.$outcome->id.'":0%\'');} ))
|
|
57
|
+ ->where('code', $course->code)->where('number',$course->number)
|
|
58
|
+ ->whereIn('semester_id', Session::get('semesters_ids'))
|
|
59
|
+ ->get();*/
|
60
|
60
|
|
61
|
61
|
$sections_evaluating = Course::has('activities')
|
62
|
62
|
|
|
@@ -103,7 +103,8 @@
|
103
|
103
|
@foreach ($section->publishedActivities as $index4 => $activity)
|
104
|
104
|
|
105
|
105
|
<h5 style="display: inline;">Activity {{ $index4 + 1 }}: </h5>
|
106
|
|
- <p style="display: inline;">{{ $activity->name }} <strong>({{ $activity->date }})</strong>
|
|
106
|
+ <p style="display: inline;">{{ $activity->name }}
|
|
107
|
+ <strong>({{ $activity->date }})</strong>
|
107
|
108
|
</p>
|
108
|
109
|
<br>
|
109
|
110
|
<br>
|
|
@@ -174,6 +175,11 @@
|
174
|
175
|
<p style="display: inline;"> <strong>Has no Formative Action yet </strong>
|
175
|
176
|
|
176
|
177
|
@endif
|
|
178
|
+ @if ($activity->assessment_comments != null)
|
|
179
|
+
|
|
180
|
+ <h5 style="display: inline; margin:30px;">Assessment Comments</h5>
|
|
181
|
+ <p style="display: inline;">{{ $activity->assessment_comments }}</p>
|
|
182
|
+ @endif
|
177
|
183
|
<br>
|
178
|
184
|
|
179
|
185
|
<table class='table table-striped table-condensed datatable'>
|