@extends('layouts.app') @section('page-css') @endsection @section('content')
{{ $page_title }}
@if(session()->has('success'))
{{ session()->get('success') }}
@endif @if(session()->has('danger'))
{{ session()->get('danger') }}
@endif
@csrf
{{-- Coach & Coachee Names --}}

{{ $growsheet_data->coach_details->full_name }}

{{ $growsheet_data->coachee_details->full_name }}

{{-- GOAL --}}

500 characters remaining

{{-- REALITY --}}

500 characters remaining

{{-- REALITY --}}

500 characters remaining

{{-- Created --}}

{{ date('F d, Y', strtotime($growsheet_data->created_at)) }}

{{-- Options --}}
@if(!empty($growsheet_data->options)) @foreach($growsheet_data->options as $key => $value) @endforeach @else @endif
ID Option Name Due Date Completed Date Status Completed Action Request
{{ $value->option_id }} {{ $value->option_name }} {{ ($value->due_date != NULL ? date('F d, Y', strtotime($value->due_date)) : '') }} {{ ($value->completed_at != NULL ? date('F d, Y', strtotime($value->completed_at)) : '') }} {{ ($value->due_date != NULL ? $value->status_name : 'NOT A WAY-FORWARD') }} {{ ($value->due_date != NULL ? ($value->completed_at == null ? 'NOT YET COMPLETED' : 'COMPLETED') : '') }} @if($value->admin_approval == 'PENDING') IRRLEVANT: PENDING
Read   Approve Reject @else NO REQUEST @endif
{{-- Comment --}}
Cancel
@include('pages.includes.footer')
@endsection @section('page-js') @endsection