@foreach($subjects as $key => $row)
{{ $row->title }} @if($row->related_stages->count()) @foreach($row->related_stages as $stage) {{ $stage->currentDescription->title ?? "" }} @endforeach @else {{ __('main.not_exist') }} @endif @if($row->grades->count()) @foreach($row->grades as $grade) {{ $grade->currentDescription->title ?? "" }} @endforeach @else {{ __('main.not_exist') }} @endif {{ \Carbon\Carbon::parse($row->created_at)->format('Y/m/d') }} @endforeach @if(count($subjects) && $subjects->hasPages()) {{ $subjects->links('pagination::bootstrap-5') }} @endif