@if (isset($issue_tracker)) @else @endif {{-- --}} {{-- --}}
@if (isset($issue_tracker)) @else @endif
@if (isset($issue_tracker)) @else @endif
{{-- Assigned to --}} {{-- only show this select if authenticated user has "mybusybee.net" in email --}} @if (strpos(auth()->guard('admin')->user()->email, 'mybusybee.net') !== false)
@endif
{{ __('Attachments') }}
    @if (isset($attachments)) @foreach ($attachments as $attach)
  • {{ $attach['file_name'] }}
  • @endforeach @endif
@if (isset($issue_tracker))

{{ __('Add Comment') }}

{{-- --}} {{-- file upload --}}

{{ __('Comment Details') }}

@foreach ($issue_tracker->comments->sortByDesc('created_at') as $comment)
Avatar
{{ $comment->user->name }}
{{ $comment->comment }}
{{ date('M d, Y | h:i a', strtotime($comment->created_at)) }}
@if ($comment->attachments->count() > 0) Attachments:
    @foreach ($comment->attachments as $attachment)
  • {{ $attachment->file_name }}
  • @endforeach
@endif
@endforeach
@endif