@extends('layouts.main') @section('main-container')

Report - Indian States and Their Census Codes

@php $i = 1;@endphp @foreach($states as $state) @if($i % 2 == 1) {{-- Start new row for every first item in a pair --}} @endif @if($i % 2 == 0) {{-- Close row for every second item in a pair --}} @endif @php $i++; @endphp @endforeach {{-- If the last row is incomplete (odd number of states), close it --}} @if($i % 2 == 1) @endif
S.No# Census Codes State Name S.No# Census Codes State Name
{{ $i }} {{ $state->id }} {{ $state->name }}
@endsection