@extends('layouts.master') @section('content') @include('partials.breadcrumb')
Add Goal
@foreach($goals as $i => $goal) @endforeach
# Subject Project Start Date End Date Description Status
{{$i + 1}} {{$goal->subject}} {{$goal->project()->title}} {{date("F j, Y", strtotime($goal->start_date))}} {{date("F j, Y", strtotime($goal->end_date))}} {!! Str::limit($goal->description) !!} @if($goal->status == 'done') @else @endif
@endsection @section('style') @endsection @section('script') @endsection