{{-- @extends('layouts.header') @section('content')

Student Report Cards

@php $count = 0; // Counter to keep track of boxes in a row @endphp @foreach ($reportCards as $reportCard) @if ($count % 3 == 0)
@endif @php $count++; @endphp @if ($count % 3 == 0 || $loop->last)
@endif @endforeach
@if(session('success'))
{{ session('success') }}
@endif @endsection @push('scripts') @endpush --}} @extends('layouts.header') @section('content')

Student Report Cards

@php $count = 0; @endphp @foreach ($reportCardsData as $data) @if ($count % 3 == 0)
@endif @php $count++; @endphp @if ($count % 3 == 0 || $loop->last)
@endif @endforeach
@if (session('success'))
{{ session('success') }}
@endif @endsection @push('scripts') @endpush