@extends('layouts.app') @section('title', $nominee->name . ' - Vote Now') @section('content')
Back to Categories
@if($nominee->photo) {{ $nominee->name }} @else
@endif
{{ $nominee->category->name }}

{{ $nominee->name }}

@if($nominee->bio)

{{ $nominee->bio }}

@endif @php $individual_votes = \App\Models\Vote::where('nominee_id', $nominee->id)->where('status', 'success')->get(); $total_individual_votes =$individual_votes->sum('amount'); @endphp
Total Votes {{ $total_individual_votes }}
@endsection @push('scripts') @endpush