@if($user->awards->count() > 0) @foreach($user->awards as $award) @endforeach
{{ $award->name }} {{ $award->description }} {{ Form::open(['url' => url('/admin/users/'.$user->id.'/award/'.$award->id), 'method' => 'delete', 'class' => 'pjax_form form-inline']) }} {{ Form::button('', ['type' => 'submit', 'class' => 'btn btn-danger btn-small', 'onclick' => "return confirm('Are you sure?')", ]) }} {{ Form::close() }}
@else

This user has no awards

@endif