@extends('layouts.parents.master') @section('title') {{studentCommonName(auth()->guard('student')->user()->username).__(' | Results')}} @endsection @section('headerTitle') {{__('Results')}} @endsection @section('content')
@php $i=0; @endphp @foreach ($responseData['sessionYears'] as $sessionYear) @php if(request()->has('sessionYear')) { $className = request()->sessionYear == $sessionYear->session ? 'bg-gradient-success' : 'bg-gradient-primary'; } else { $className = $i == 0 ? 'bg-gradient-success' : 'bg-gradient-primary'; } $i++; @endphp @endforeach
{!! $responseData['firstYear'] !!}
@endsection @push('web-scripts') @endpush