@extends('layouts.master') @section('body')
@if($voting)
{{ $voting->title }}

{!! $voting->description !!}

Voting Start Date
{{ $voting->start_date }}

Voting End Date
{{ $voting->end_date }}

@endif
@php $categories->load('nominees'); @endphp @foreach ($categories as $category)
{{ $category->name }}
@foreach ($category->nominees as $nominee)
{{ $nominee->name }}

{{ $nominee->name }}

{{ $nominee->tagline }}

@endforeach
{{-- --}} {{--

Some quick example text to build on the card title and make up the bulk of the card's content.

--}}
@endforeach @endsection