@extends('admin.layouts.container') @section('content')

{{$title ?? '' }}

@if(count($programs))
    @foreach($programs as $program)
  • {{ $loop->iteration .': '. $program->currentDescription->title }}
  • @endforeach
@else

{{ __('main.not_exist') }}

@endif
@endsection