@extends('admin.layouts.app') @section('panel')

@lang('JOB'): {{ __($project->job->title) }}

@if ($project->status == Status::PROJECT_REPORTED) @if (@$convId) @lang('Chat') @endif @endif
@lang('Buyer Information')
@lang('Buyer'):

{{ $project->buyer->fullname }}

{{ @$project->buyer->username }}
@lang('Assigned At'):

{{ showDateTime($project->created_at, 'd F Y') }}

@lang('Uploaded At'):

{{ showDateTime($project->uploaded_at, 'd F Y') }}

@lang('Total Worked Time'):

{{ formatTimeDiff($project->created_at, $project->uploaded_at) }}

@if ($project->report_reason)
@lang('Report Reason'):

{{ $project->report_reason }}

@endif
@if ($project->buyerReview)
@lang('Freelancer\'s Rating for Buyer')
    @php echo avgRating($project->buyerReview->rating) @endphp

{{ $project->buyerReview->review }}

@endif
@lang('Freelancer Information')
@lang('Freelancer'):

{{ $project->user->fullname }}

{{ @$project->user->username }}
@lang('Project Status'):

@php echo $project->statusBadge @endphp

@lang('Estimated Time'):

{{ $project->bid->estimated_time }}

@lang('Bid Amount'):

{{ showAmount($project->bid->bid_amount) }}

@lang('Bid Quotes'):

{{ $project->bid->bid_quote ?? __('No quotes provided') }}

@if (@$project->review)
@lang('Buyer Rating for the Freelancer')
    @php echo avgRating($project->review->rating) @endphp

{{ $project->review->review }}

@endif
@if ($project->uploaded_at)
@lang('Project File')
@lang('Download') {{ ucfirst($extension) }}

@lang('Click to download the project file')

@endif
@endsection @push('breadcrumb-plugins') @endpush @push('style') @endpush