@extends('layouts.app') @section('page-css') @endsection @section('content')
{{ $page_title }}
@php($export_excel_url = env('API_URL') . '/feedbacks/export-excel?' . ($_SERVER['QUERY_STRING'] ?? null ? $_SERVER['QUERY_STRING'] : '?group_id=' . $parameters['group_id']) .'&type=all') {{-- @include('pages.includes.filter_forms.main_filter_form') --}} @include('pages.ratings.filter')
Processing...
@if($ratings->responseCode == 800) @foreach($ratings->data->data as $gs_key => $gs_value) @endforeach @else @endif
Coach Employee Id Coach Name Coachee Employee Id Coachee Name Ratings Comments Group Division Department Created
{{ $gs_value->coach->user->employee_id }} {{ $gs_value->coach->user->full_name }} {{ $gs_value->coachee->user->employee_id }} {{ $gs_value->coachee->user->full_name }} @foreach($gs_value->rating as $ratings_key => $ratings_value)
{{ $ratings_value->question->question }}
    @for($i = 1; $i <= 5; $i++)
  • @endfor
@endforeach
{{ isset($gs_value->rating[0]) ? $gs_value->rating[0]->remarks : '' }} {{ $gs_value->group->group_name }} {{ $gs_value->division->division_name }} {{ $gs_value->department->department_name }} {{ date('F d, Y h:i a', strtotime($gs_value->created_at)) }} View Grow Session
    @include('pages.includes.footer')
    @endsection @section('page-js') @endsection