@extends('layouts.backend.app') @section('title', 'Request View') @section('head') @include('layouts.backend.partials.headersection',['title'=>'Request View']) @endsection @section('content')

{{ __('Request Information') }}

@forelse($jsonData as $key => $value ) @empty @endforelse
{{ ucwords($key) }} {{ $value }}
{{ __('Status') }} @if ($data->status == 1) {{ __('Active') }} @else {{ __('Pending') }} @endif
{{ __('Request Created Date') }} {{ $data->created_at->format('d.m.Y') }}
{{ __('Request Created At') }} {{ $data->created_at->diffForHumans() }}
{{ __('Amount') }} {{ $data->amount }}
{{ __('Type') }} @if ($data->type == 1) {{ __('Active') }} @else {{ __('Pending') }} @endif
{{ __('Is test') }} @if ($data->is_test == 1) {{ __('Active') }} @else {{ __('Pending') }} @endif
{{ __('Ip') }} {{ $data->ip ?? 'null' }}
{{ __('Status') }} @if ($data->captcha_status == 1) {{ __('Active') }} @else {{ __('Deactive') }} @endif
{{ __('Download Invoice') }} {{ __('Download PDF') }}
@endsection