@extends('frontend.layout.main') @section('content')
{{-- PAGE HEADING --}}

Acts

Browse judgments by category & year

{{-- ================= LEFT : CATEGORY (DESKTOP) ================= --}}
Categories
@foreach($subcategories as $item) @php $active = request('category') == $item->slug; @endphp {{ $item->state }} {{ $item->act_data_count }} @endforeach
{{-- ================= CENTER : CASE LAWS LIST ================= --}}
@forelse($acts as $key => $item) @empty @endforelse
# Case Name
{{ $key+1 }} {{ $item->title }}
No records found
{{-- ================= RIGHT : YEARS (DESKTOP) ================= --}}
Years
@foreach($years as $year) {{ $year }} @endforeach
{{-- ================= MOBILE FILTER JS ================= --}} @endsection