@extends('layouts.auth') @section('content')

{{ $category->name }} Detail

{{count($category->nominees)}} Nominees

@if (count($category->nominees) > 0) @foreach ($category->nominees as $key => $nominee) @endforeach
# Username
{{ $key + 1 }}

{{ $nominee->username }}

@else
No nominee found
@endif
@endsection