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

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