@extends('layout') @section('title')
{{ date('d-M-Y', strtotime($order->start_date)) }}
{{ date('d-M-Y', strtotime($order->end_date)) }}
{{ $order->number_of_day }}
#{{ $order->order_id }}
{{ $order->client_name }}
{{ $order->client_phone }}
{{ $order->client_email }}
{{ $order?->city?->name }}
{{ $order->client_name }}
{{ $order->created_at->format('d-m-Y') }}
{{ $order->created_at->format('h:i A') }}
{{ html_decode($order->order_note) }}
{{ $order->influencer->name }}
{{ $order->service->title }}
@if ($order->payment_status == 'pending') {{__('admin.Pending')}} @elseif ($order->payment_status == 'success') {{__('admin.Success')}} @endif
{{ $order->payment_method }}
{{ html_decode($order->transection_id) }}
{{ currency($order->package_amount) }}
{{ currency($order->additional_amount) }}
{{ currency($order->coupon_discount) }}
{{ currency($order->total_amount - $order->coupon_discount) }}
@if ($order->order_status == 'awaiting_for_influencer_approval') {{__('admin.awaiting for influencer approval')}} @elseif ($order->order_status == 'approved_by_influencer') {{__('admin.Approved')}} @elseif ($order->order_status == 'order_decliened_by_influencer') {{__('admin.Declined by influencer')}} @elseif ($order->order_status == 'order_decliened_by_client') {{__('admin.Declined by me')}} @elseif ($order->order_status == 'complete') {{__('admin.Complete')}} @endif
{{ $refund_request->created_at->format('h:i A, d-M-Y') }}
@if ($order->complete_by_admin == 'Yes') {{__('admin.Refund request declined and order completed by admin')}} @else @if ($refund_request->status == 'awaiting_for_admin_approval') {{__('admin.awaiting for admin approval')}} @elseif ($refund_request->status == 'decliened_by_admin') {{__('admin.Decliened by admin')}} @else {{__('admin.Complete')}} @endif @endif