@extends('layouts.master') @section('content') @include('partials.breadcrumb')

{{$goal->subject}}

Project: {{$goal->project()->title}}

Description: {!! $goal->description !!}

Start Date: {{date("F j, Y", strtotime($goal->start_date))}}

End Date: {{date("F j, Y", strtotime($goal->end_date))}}

@if($goal->status == 'done')

Goal Completed

@else

Goal In Progress

@if($reports->count())
@csrf @method('PATCH')
@endif @endif

Goal Reports

@if($goal->status != 'done') @endif
    @foreach($reports as $report)
  • {!! $report->report !!}

  • @endforeach
@if($goal->status != 'done') @endif @endsection @section('style') @endsection @section('script') @endsection