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

{{$goal->subject}}

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

Staff: {{$goal->reporter()->title}} {{$goal->reporter()->firstname}} {{$goal->reporter()->lastname}}

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

@endif

Goal Reports

    @foreach($reports as $report)
  • {!! $report->report !!}

  • @endforeach
@endsection @section('style') @endsection @section('script') @endsection