@extends('layouts.guidanceapp')
@section('content')
@if(count($scheds)>0)
|
Schedule |
Place |
Status |
Action |
@foreach($scheds as $sched)
{{++$x}} |
{{date ('M d, Y (D) - g:i A', strtotime($sched->datetime))}} |
{{$sched->place}} |
@if ($sched->is_remove==1) Not Active @else Active @endif |
Modify
View List
Delete
|
@endforeach
@else
No exam schedule has been set to the system. Please see administrator.
@endif
@stop