@extends('layouts.app') @section('content') @if(session()->has('message'))
{{ session()->get('message') }}
@endif @if(session()->has('error'))
{{ session()->get('error') }}
@endif
{{--
     
--}}
{{--@if($category_id)--}} {{--@endif--}}
Download As CSV
@forelse($votes as $key => $vote) {{----}} @empty @endforelse
Sl No Category Email Country Created Date
{{ $loop->index + 1 }} {{ $vote->category->name }} {{ $vote->email }} {{ $vote->country->name }} {{ $vote->created_at->format('d-m-Y') }}   
No record found...
Showing {{ $votes->firstItem() }} to {{ $votes->lastItem() }} of {{ $votes->total() }} results
{{ $votes->links('pagination::bootstrap-4') }}
@endsection @section('customScripts') @endsection