@if(count($reopen_data) > 0)
@foreach($reopen_data as $reopen)
{{ Carbon\Carbon::parse($reopen->created_at)->diffForHumans()}}
{{ $reopen->comment }}
@if($reopen->attachment != "")
@if($reopen->attachment_ext == 'xls' || $reopen->attachment_ext == 'xlsx' || $reopen->attachment_ext == 'docx' || $reopen->attachment_ext == 'doc')
{{ Str::limit($reopen->attachment,50)}}
@else
{{ Str::limit($reopen->attachment,50)}}
@endif
@endif
@endforeach
@endif