@extends('layouts.app') @section('content')
@if( !empty($dispute_detail['disputed']) )
{{$dispute_detail['dispute_status_txt']}}

{{$dispute_detail['dispute_desc_txt']}}

@if($dispute_detail['dispute_status'] == 'declined') @role('buyer') {{ __('disputes.acknowledge_admin')}} @endrole @role('seller') {{__('proposal.view_detail')}} @endrole @else {{__('proposal.view_detail')}} @endif
@endif
@php $status = getTag( $gig->gig_orders[0]->status); @endphp {{ $status['text'] }}
@foreach($gig->categories as $single ) {{ $single->name}} @endforeach
{!! $gig->title !!}
@role('buyer') @php if( !empty($gig->gigAuthor->image) ){ $image_path = getProfileImageURL( $gig->gigAuthor->image, '80x80' ); $seller_image = !empty($image_path) ? '/storage/' . $image_path : '/images/default-user-80x80.png'; }else{ $seller_image = '/images/default-user-80x80.png'; } @endphp
{{$gig->gigAuthor->full_name }}
{{ __('gig.gig_by') }}
{{ $gig->gigAuthor->full_name }}
@endrole @role('seller') @php if( !empty($gig->gig_orders[0]->orderAuthor->image) ){ $image_path = getProfileImageURL( $gig->gig_orders[0]->orderAuthor->image, '38x38' ); $buyer_image = !empty($image_path) ? '/storage/' . $image_path : '/images/default-user-38x38.png'; }else{ $buyer_image = '/images/default-user-38x38.png'; } @endphp
{{$gig->gig_orders[0]->orderAuthor->full_name }}
@role('seller') {{ __('gig.order_by') }}
{{ $gig->gig_orders[0]->orderAuthor->full_name }}
@endrole
@endrole
{{ __('gig.deadline') }}
{{ date('M d, Y', strtotime('+'.$gig->gig_orders[0]->gig_delivery_days.'days', strtotime($gig->gig_orders[0]->gig_start_time)))}}
{{ __('gig.plan_type') }}
{{ $gig->gig_orders[0]->plan_type }}
{{ __('gig.order_id') }}
#{{ $gig->gig_orders[0]->id }}
@if( !empty($gig->gig_orders[0]->gig_addons) ) @php $addons = unserialize($gig->gig_orders[0]->gig_addons); @endphp

{{ __('gig.additional_service') }}

    @foreach($addons as $single)
  • {{getPriceFormat($currency_symbol, $single['price'])}}
  • @endforeach
@endif
@if( $gig->gig_orders[0]->status == 'hired' ) @php $author_info = array( 'gig_title' => $gig->title, 'gig_author' => $gig->gigAuthor->full_name, 'gig_user_id' => $gig->gigAuthor->user_id, 'order_author' => $gig->gig_orders[0]->orderAuthor->full_name, 'order_user_id' => $gig->gig_orders[0]->orderAuthor->user_id, 'gig_slug' => $slug, ) @endphp @endif
@if( $gig->gig_orders[0]->status == 'hired' ) @endif
@endsection('content') @push('scripts') @endpush('scripts')