direction == 1) dir="rtl" @endif> {{-- required meta tags --}} {{-- title --}} {{ 'Featured Service Request Invoice | ' . config('app.name') }} {{-- fav icon --}} {{-- styles --}} @php $mb = '35px'; $width = '50%'; $ml = '18px'; $pl = '15px'; $pr = '15px'; $float = 'right'; $floatL = 'left'; @endphp

{{ __('FEATUED SERVICE INVOICE') }}

@php $position = $orderInfo->currency_text_position; $currency = $orderInfo->currency_text; @endphp
{{-- order details start --}}

{{ __('Order Details') }}

@php $service_id = $orderInfo->service_id; $serviceContent = App\Models\Services\ServiceContent::where('service_id', $service_id) ->select('name', 'slug') ->first(); @endphp

{{ __('Order No') . ': ' }}{{ '#' . $orderInfo->order_number }}

{{ __('Service Title') . ': ' }}{{ truncateString($serviceContent->name, 25) }}

{{ __('Paid Amount') . ': ' }}{{ $position == 'left' ? $currency . ' ' : '' }}{{ number_format($orderInfo->amount, 2) }}{{ $position == 'right' ? ' ' . $currency : '' }}

{{ __('Payment Method') . ': ' }}{{ $orderInfo->payment_method }}

{{ __('Payment Status') . ': ' }}{{ ucfirst($orderInfo->payment_status) }}

{{ __('Order Status') . ': ' }}{{ ucfirst($orderInfo->order_status) }}

{{-- order details end --}} {{-- billing details start --}}

{{ __('Billing Details') }}

{{ __('Name') . ': ' }}{{ $orderInfo->vendor->username }}

{{ __('Email') . ': ' }}{{ $orderInfo->vendor->email }}

{{-- billing details end --}}