</thead>
										
										<tbody>
										<?php 
$num = 0;
?>
										@foreach($allReport as $info)
											 <tr>
												<td class='text-centre'>{{++$num}}</td>
												<td class='text-centre'>{{$info->created_at}}</td>
												<td class='text-centre'>{{$info->email}}</td>
												<td class='text-centre'>{{$info->category}}</td>
												<td class='text-centre'>{{$info->title}}</td>
												<td class='text-centre'>
													<?php 
$actionStatus = CommonFunction::actionStatus($info->id);
?>
													@if($actionStatus)
														<span style="color:green">Taken</span>
													@else 
														<span style="color:red">Not Taken</span>
													@endif
												</td>
												<td class='text-centre'>
												<?php 
$approvalStatus = CommonFunction::approvalStatus($info->id);
?>
												@if($approvalStatus)
													<span style="color:green">	Approved</span>
												@else 
													<span style="color:red">Not Approved</span>