@extends("admin.admin_app") @section("content")

Capacity List

Capacity Range List For {{$type}}

@php $ranges = []; $start = 0; $end = 10; while ($end <= 200) { $ranges[] = $start . '-' . $end; $start = $end + 1; $end += 10; } @endphp @foreach($ranges as $i => $range) @endforeach
S.No. Capacity Range Status Actions
{{ $i + 1 }} {{ $range }}
@endsection