@extends('layouts.admin') @section('title', 'States') @section('content')

States

{{--
Create
--}}
@if($states->count() > 0) @foreach($states as $state) @endforeach
ID Name Abbreviation Electors Population Actions
{{ $state->id }} {{ $state->name }} {{ $state->abbreviation }} {{ $state->users_count }} {{ number_format($state->population, 0, '.', ',') }} View Edit {{-- Delete
@csrf @method('delete')
--}}
@else
There are no states to show.
@endif
@endsection {{-- @push('scripts') @endpush --}}