@extends('adminlte::page') @section('content') @section('content_header', __('admin.view_order'))
@if(count($errors) > 0)
@foreach($errors->all() as $error)

{{$error}}

@endforeach
@endif @if(Session::has('success'))

{{ Session::get('success') }}

@endif
@if($order->price!='0.00') @endif @if($order->reciprocal_link != null) @endif @if($order->bypass_redirect == 1) @endif @if($order->bypass_details == 1) @endif @if($order->featured_home == 1) @endif @if($order->featured_category == 1) @endif @if (!empty($deep_link_data['link_1']['url'] && $deep_link_data['link_1']['title']) || !empty($deep_link_data['link_2']['url'] && $deep_link_data['link_2']['title']) || !empty($deep_link_data['link_3']['url'] && $deep_link_data['link_3']['title'])) @endif @if ($other_contacts['facebook_url']['url'] != null || $other_contacts['twitter_url']['url'] != null || $other_contacts['instagram_url']['url'] != null || $other_contacts['linkedin_url']['url'] != null || $other_contacts['telegram_url']['url'] != null || $other_contacts['whatsapp_number']['number'] != null) @endif @if($order->phone_number != null) @endif @if($order->email != null) @endif @if($order->address != null) @endif
@lang('admin.order_id') #{{$order->order_id}}
@lang('admin.status') @if($order->price == '0.00') - @else @if($order->payment_status=='0')@lang('general.not_paid')@endif @if($order->payment_status=='1')@endif @if($order->payment_status=='3')@lang('general.processing')@endif @if($order->payment_status=='4')@lang('general.expired')@endif @endif
@lang('admin.package') {{$array_data['package_name'][$order->package]}}
@lang('admin.price') @if($order->price=='0.00')@lang('general.free') @else{{$order->currency_symbol}}{{$order->price}}@endif
@lang('admin.payment_method') {{$array_data['payment_method_name'][$order->payment_method]}}
@lang('admin.title') {{$order->title}}
@lang('admin.url') {{$order->url}}
@lang('admin.reciprocal_link') {{$order->reciprocal_link}} @endif @if($order->visible_url != null)
@lang('admin.visible_url') {{$order->visible_url}}
@lang('admin.bypass_redirection_page')
@lang('admin.bypass_details_page')
@lang('admin.featured_home')
@lang('admin.featured_category')
@lang('admin.category') {{$array_data['category_name'][$order->category]}}
@lang('admin.deep_links') @foreach($deep_link_data as $title) @if ($title['url'] != null && $title['title'] != null) {{$title['title']}}
@endif @endforeach
@lang('admin.other_contacts') @if ($other_contacts['facebook_url']['url'] != null)@lang('admin.facebook_url')
@endif @if ($other_contacts['twitter_url']['url'] != null)@lang('admin.twitter_url')
@endif @if ($other_contacts['instagram_url']['url'] != null)@lang('admin.instagram_url')
@endif @if ($other_contacts['linkedin_url']['url'] != null)@lang('admin.linkedin_url')
@endif @if ($other_contacts['whatsapp_number']['number'] != null)@lang('admin.whatsapp_number')
@endif @if ($other_contacts['telegram_url']['url'] != null)@lang('admin.telegram_url')
@endif
@lang('admin.phone_number') {{$order->phone_number}}
@lang('admin.email') {{$order->email}}
@lang('admin.address') {{$order->address}}
@lang('admin.date') {{\Carbon\Carbon::parse($order->created_at)->translatedFormat('F d, Y H:i:s')}}
@lang('admin.ip_address') {{$order->ip}}
@endsection