@extends('backend.layouts.main') @section('title', 'MLI ATS | Activity') @section('content')
@include('backend.share.title', ['title' => 'Manage Activity'])
@include('backend.project.items.edit-header', ['active' => 'review'])

Review Attachments

@include('backend.project.items.activity-basic-info') @foreach ($attachments as $key => $attachment_type)
{{ Str::ucfirst($key) }}
@if (isset($attachment_type)) @forelse ($attachment_type as $attachment) @empty @endforelse @endif
{{ $attachment->file }} {{ $attachment->status }}
Last Comment: {{ $attachment->comment ? $attachment->comment : 'N/A' }}
@endforeach
@csrf @method('PATCH')

Comment

Cancel
@include('backend.project.items.edit-sidebar')
@endsection