{{ __('Title')}} :

{{$bug->title}}

{{ __('Priority')}} :

{{ucfirst($bug->priority)}}

{{ __('Description')}} :

{{$bug->description}}

{{ __('Created Date')}} :

{{$bug->created_at}}

{{ __('Assign to')}} :

{{(!empty($bug->assignTo)?$bug->assignTo->name:'')}}

  • {{__('Comments')}}
  • {{__('Files')}}
@foreach($bug->comments as $comment)
{{(!empty($comment->user)?$comment->user->name:'')}}

{{$comment->comment}}

@endforeach
@csrf


@foreach($bug->bugFiles as $file)
{{$file->name}}

{{$file->file_size}}

{{--
  • {{$file->name}}
    {{$file->file_size}}
  • --}} @endforeach