@extends('layouts.app') @section('content') @if(Session::has('success_message'))
{!! session('success_message') !!}
@endif
Election Histories
@if(count($electionHistories) == 0)

ไม่พบข้อมูล Election Histories

@else
@foreach($electionHistories as $electionHistory) @endforeach
ลำดับที่ ประเภทการเลือกตั้ง หมู่บ้าน ตำบล อำเภอ วันที่มีการเลือกตั้ง ผู้บันทึกข้อมูล ผู้มิสิทธิ์ ผู้มาใช้สิทธิ์
{{++$r}} {{ $electionHistory->election_type }} {{ optional($electionHistory->mooban)->name }} {{ optional($electionHistory->tambon)->name }} {{ optional($electionHistory->amphur)->name_th }} {{ $electionHistory->election_date }} {{ optional($electionHistory->user)->name }} {{ $electionHistory->all_voter_people }} {{ $electionHistory->all_vote }}
{{ csrf_field() }}
@endif
@endsection