@extends('backend.admin-master') @section('site-title') {{__('Gig order message')}} @endsection @section('style') @endsection @section('content')
@include('backend/partials/message') @if($errors->any())
    @foreach($errors->all() as $error)
  • {{$error}}
  • @endforeach
@endif

{{__('Gig order message')}}

{{__('All Gig Orders')}}
  • {{__('Order ID:')}} #{{$gig_details->id}}
  • {{__('Gig Name:')}} {{get_gig_name($gig_details->gig_id)}}
  • {{__('Package Name:')}} {{$gig_details->selected_plan_title}}
  • {{__('Package Price:')}} {{amount_with_currency_symbol($gig_details->selected_plan_price)}}
  • {{__('Revisions:')}} {{$gig_details->selected_plan_revisions.' '.__('Time Revisions')}}
  • {{__('Payment Gateway:')}} {{str_replace('_',' ',$gig_details->selected_payment_gateway)}}
  • {{__('Payment Status:')}} {{ucwords($gig_details->payment_status)}}
  • {{__('Order Status:')}} {{ucwords(str_replace('_',' ',$gig_details->order_status))}}
  • {{__('Delivery Date:')}} {{get_future_date($gig_details->created_at,$gig_details->selected_plan_delivery_days)}}

{{__("Delivery time countdown")}}

{{__('All Conversation')}}

{{substr(get_username_by_id($gig_details->user_id),0,1)}}
{{get_username_by_id($gig_details->user_id)}}
{{date_format($gig_details->created_at,'d M Y H:i:s')}}
{{__('Message')}}

{{$gig_details->message}}

{{__('Additional Note')}}

{{$gig_details->additional_note}}

@if(file_exists('assets/uploads/gig-files/'.$gig_details->file)) {{__('Attached File')}} {{$gig_details->file}} @endif
@if(!empty($gig_message))
@if($q == 'all' && count($gig_message) > 1)
@endif @foreach($gig_message as $msg)
@if($msg->user_type == 'customer') {{substr(get_username_by_id($msg->user_id),0,1)}} @else {{substr(get_username_by_admin_id($msg->user_id),0,1)}} @endif @if($msg->notify_mail == 'yes') @endif
@if($msg->user_type == 'customer') {{get_username_by_id($msg->user_id)}} @else {{get_username_by_admin_id($msg->user_id)}} @endif
{{date_format($msg->created_at,'d M Y H:i:s')}} | {{$msg->created_at->diffForHumans()}}
{!! $msg->message !!}
@if(file_exists('assets/uploads/gig-files/'.$msg->file)) {{$msg->file}} @endif
@endforeach
@endif
{{__('Replay To Message')}}
@include('backend.partials.message') @if($errors->any())
    @foreach($errors->all() as $error)
  • {{$error}}
  • @endforeach
@endif
@csrf
{{__('max file size 200mb, only zip file is allowed')}}
@include('backend.partials.media-upload.media-upload-markup') @endsection @section('script') @include('backend.partials.media-upload.media-js') @endsection