@php
$limit = isset($limit) ? $limit : 0; // Set limit or default to 0
@endphp
@forelse ($programs as $program)
@if ((!$limit || $loop->iteration <= $limit))
@if($program->avatar)

@else
{{ strtoupper(substr($program->name, 0, 1)) }}
@endif
@else
+{{ count($programs) - $loop->iteration + 1 }}
@break
@endif
@empty
N/A
@endforelse