@extends('front.layouts.master-auth') @section('meta') @if(isset($item)) @endif @endsection @section('content')
@php if(getCurrentUser()->isFreelancer()) { $current = $item?->freelancer; $other = $item?->owner; } else { $current = $item?->owner; $other = $item?->freelancer; } @endphp @include('front.partials._chat_block', [ 'chat' => $item, 'current' => $current, 'other' => $other, ])

@lang('Attachments')

@if($item->getMedia('chats')->count() > 0) @foreach($item->getMedia('chats') as $media)
{{$media->file_name}}
{{\Carbon\Carbon::parse($media->created_at)->locale(app()->getLocale())->translatedFormat('j F Y - h:i')}}
@endforeach @endif
@endsection @section('js-body') @endsection