@forelse (['daily' => 'Daily', 'weekly' => 'Weekly', 'monthly' => 'Monthly', 'other' => 'Other'] as $band => $bandLabel)
@if ($this->groupedPlans->has($band))
{{ $bandLabel }}
@foreach ($this->groupedPlans[$band] as $plan)
@endforeach
@endif
@empty
@endforelse
@if ($this->groupedPlans->isEmpty())
No data plans available for this network right now.
@endif