@extends('layouts.app') @section('page-css') @endsection @section('content')
{{ $page_title }}
{{ $year }}
Yearly Assessment: {{ ($coachee_statistics->responseCode == 800 ? strtoupper($coachee_statistics->data->$year->ytd_achievement_rating->ytd_assessment) : 'DOES NOT MEET') }}
@if($coachee_statistics->responseCode == 800) @if(!empty($coachee_statistics->data) && !empty($coachee_statistics->data->$year)) @foreach($coachee_statistics->data->$year as $statistics_key => $statistics_value) @if ($statistics_value != NULL && $statistics_key != 'ytd_achievement_rating') @endif @endforeach
MONTH ACHIEVEMENT
{{ ucwords(date('F', strtotime('1-' . $statistics_key . '-2020'))) }} {{ ucwords($statistics_value->assessment) }}
@else

No Data Yet.

@endif @else

No Data Yet.

@endif
@include('pages.includes.footer')
@endsection @section('page-js') @endsection