@extends('backend.layout.master') @section('title', __('Project Details')) @section('style') @endsection @section('content')
@if(cloudStorageExist() && in_array(Storage::getDefaultDriver(), ['s3', 'cloudFlareR2', 'wasabi'])) {{ $project->title ?? '' }} @else {{ $project->title }} @endif
{{ __('Status:') }} @if ($project->status === 0) {{ __('Pending') }} @elseif($project->status === 1) {{ __('Approved') }} @elseif($project->status === 2) {{ __('Rejected') }} @endif {{ __('Reject:') }} {{ $project->project_history?->reject_count ?? '0' }} {{ __('Edit:') }} {{ $project->project_history?->edit_count ?? '0' }}

{{ $project->title }}

{!! $project->description !!}

@if($user->image) @if(cloudStorageExist() && in_array(Storage::getDefaultDriver(), ['s3', 'cloudFlareR2', 'wasabi'])) {{ __('profile img') }} @else {{ $user->first_name }} @endif @else {{ __('AuthorImg') }} @endif

{{ $user->first_name }} {{ $user->last_name }}

@if($user->user_introduction?->title) {{ $user->user_introduction?->title }} ยท @endif @if($user->user_state?->state) {{ $user->user_state?->state }}, @endif @if($user->user_country?->country) {{ $user->user_country?->country }} @endif

{!! freelancer_rating($user->id) !!}
@if (!empty($project->standard_title) && !empty($project->premium_title))

{{ __('Compare Packages') }}

  • {{ __('Revisions') }}
  • {{ __('Delivery time') }}
  • @foreach ($project->project_attributes as $attr)
  • {{ $attr->check_numeric_title }}
  • @endforeach
  • {{ __('Charges') }}
@if ($project->basic_title)

{{ $project->basic_title }}

  • {{ $project->basic_revision }}
  • {{ $project->basic_delivery }}
  • @foreach ($project->project_attributes as $attr) @if ($attr->basic_check_numeric == 'on')
  • @else
  • {{ $attr->basic_check_numeric }}
  • @endif @endforeach
  • @if ($project->basic_discount_charge != null && $project->basic_discount_charge > 0)
    {{ amount_with_currency_symbol($project->basic_discount_charge) }}
    {{ amount_with_currency_symbol($project->basic_regular_charge) }} @else
    {{ amount_with_currency_symbol($project->basic_regular_charge) }}
    @endif
@endif

{{ $project->standard_title }}

  • {{ $project->standard_revision }}
  • {{ $project->standard_delivery }}
  • @foreach ($project->project_attributes as $attr) @if ($attr->basic_check_numeric == 'on')
  • @else
  • {{ $attr->standard_check_numeric }}
  • @endif @endforeach
  • @if ($project->standard_discount_charge != null && $project->standard_discount_charge > 0)
    {{ amount_with_currency_symbol($project->standard_discount_charge) }}
    {{ amount_with_currency_symbol($project->standard_regular_charge ?? '') }} @else
    {{ amount_with_currency_symbol($project->standard_regular_charge ?? '') }}
    @endif

{{ $project->premium_title }}

  • {{ $project->premium_revision }}
  • {{ $project->premium_delivery }}
  • @foreach ($project->project_attributes as $attr) @if ($attr->basic_check_numeric == 'on')
  • @else
  • {{ $attr->premium_check_numeric }}
  • @endif @endforeach
  • @if ($project->premium_discount_charge != null && $project->premium_discount_charge > 0)
    {{ amount_with_currency_symbol($project->premium_discount_charge) }}
    {{ amount_with_currency_symbol($project->premium_regular_charge) }} @else
    {{ amount_with_currency_symbol($project->premium_regular_charge) }}
    @endif
@endif
@include('backend.pages.project.project-reject') @endsection @section('script') @include('backend.pages.project.project-js') @endsection