{{ __('All the Courses') }}

@if (Session::has('message'))
{{ Session::get('message') }}
@endif @foreach($courses as $key => $value) @endforeach
{{ __('Lp') }} {{ __('Course Title') }} {{ __('University') }} {{ __('status') }} {{ __('Course Announcing Date') }} {{ __('Action Owner') }} {{ __('Action') }}
{{ $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') }}