56 lines
2.2 KiB
PHP
56 lines
2.2 KiB
PHP
@extends('layouts.app')
|
|
|
|
@section('content')
|
|
<div class="container">
|
|
<div class="row justify-content-center">
|
|
<div class="col-md-10">
|
|
@include('commons.notifications')
|
|
<div class="card">
|
|
<div class="card-header">{{ __('Project Status Reports') }}</div>
|
|
|
|
<div class="card-body">
|
|
@if (session('status'))
|
|
<div class="alert alert-success" role="alert">
|
|
{{ session('status') }}
|
|
</div>
|
|
@endif
|
|
|
|
<table class="table">
|
|
<thead>
|
|
<tr>
|
|
<th scope="col">#</th>
|
|
<th scope="col">Project</th>
|
|
<th scope="col">Status Description</th>
|
|
<th scope="col">Current Status</th>
|
|
<th scope="col">Date Updated</th>
|
|
<th scope="col">Action</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
<?php $count = 1; ?>
|
|
@foreach($project_statuses as $row)
|
|
<tr>
|
|
<th scope="row">{{ $count }}</th>
|
|
<td>{{ $row->project->name }}</td>
|
|
<td>{{ $row->description }}</td>
|
|
<td>{{ $row->status }}</td>
|
|
<td>{{ $row->created_at }}</td>
|
|
<td>
|
|
<a href="{{ url('comments/add_comment', $row->id)}}" title="Add Comments" class="btn btn-success btn-sm"><i class="bi bi-plus-circle"></i> Add Comment</a>
|
|
<!-- <a href="{{ url('project-status/add_status', $row->id)}}" title="Add New Status" class="btn "></a> -->
|
|
|
|
</td>
|
|
</tr>
|
|
<?php $count++; ?>
|
|
@endforeach
|
|
|
|
</tbody>
|
|
</table>
|
|
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
@endsection
|