Ejemplo n.º 1
0
												<th>Title</th>
												<th>Approval Date</th>
												<th>Inspector Type</th>
												<th>Training Category</th>
												<th>Associative CAA Job Task #</th>							
												<th>View Details</th>
											</tr>
										</thead>
										
										<tbody>
										@if($ojtCourses)
										@foreach ($ojtCourses as $info) 
										<tr>
												<td>
												<?php 
$name = CommonFunction::getFormalCourseTitle($info->its_course_number);
?>
													{{ HTML::linkAction('itsOjtController@singleFormalCourse',$info->its_course_number.' : ' . $name,array($info->its_course_number), array('class' => '','title'=>$name,'target'=>'_blink','style'=>'color:#FFF!important')) }}
													
												</td>
												<td>{{$info->its_job_task_no}}</td>
												<td>{{$info->title}}</td>
												<td>{{$info->approval_date}}</td>
												<td>{{$info->inspector_type}}</td>
												<td>{{$info->training_category}}</td>
												<td>{{$info->associative_faa_job_task_no}}</td>
												
																					
												<th>{{ HTML::linkAction('itsOjtController@singleOjtCourse',"Details",array($info->its_job_task_no), array('class' => '','title'=>$info->title)) }}</th>
										</tr>
										@endforeach