@extends('layouts.app') @section('content')

{{ isset($comment) ? 'Edit comment' : 'Project Details' }}

@include('commons.notifications') @csrf @if (isset($comment_body)) @method('PUT') @endif
{{ $project->name }}

Description : {{ $project->description }}

Date Created : {{ $project->created_at }}

Last Updated : {{ $project->updated_at }}

Edit Details

Status Updates

@foreach($project->statusInfo as $row) @endforeach
# Status Update Current Status Date Updated
{{ $count }} {{ $row->description }} {{ $row->status }} {{ $row->created_at }}
Add New Status Update
@endsection