{{ __('All the Courses') }}
@if (Session::has('message'))
{{ Session::get('message') }}
@endif
| {{ __('Lp') }} |
{{ __('Course Title') }} |
{{ __('University') }} |
{{ __('status') }} |
{{ __('Course Announcing Date') }} |
{{ __('Action Owner') }} |
{{ __('Action') }} |
@foreach($courses as $key => $value)
| {{ $value->courseName }} |
{{ $value->uniName }} |
{{ $value->status }} |
{{ $value->created_at }} |
{{ $value->owner }} |
{{ Form::open(array('url' => 'course/' . $value->id, 'class' => 'pull-right')) }}
{{ Form::hidden('_method', 'DELETE') }}
{{ Form::submit('Delete', array('class' => 'btn btn-warning')) }}
{{ Form::close() }}
{{ __('Release') }}
{{ __('Edit') }}
|
@endforeach