@extends('layouts.app') @section('content')
{{ _lang('View Customer Details') }}
@php $date_format = get_company_option('date_format','Y-m-d'); @endphp
@if(Auth::user()->user_type == 'user' || Auth::user()->role_id == 17 || Auth::user()->role_id == 8) @endif {{-- --}} {{-- --}} {{-- --}} {{-- --}} {{-- --}} {{-- --}} {{-- --}}
{{ _lang('Customer ID') }}{{ $task->customer_id }}
{{ _lang('Customer Name') }}{{ $task->name }}
{{ _lang('Customer Email') }}{{ $task->email }}
{{ _lang('Customer Number') }}{{ $task->phone }}
{{ _lang('Customer Device Type') }}{{ $task->customer_device }}
{{ _lang('Printer Use Case') }}{{ ucwords($task->printer_use_case) }}
{{ _lang('Printer Problem') }}{{ ucwords($task->printer_problem) }}
{{ _lang('Agent Name') }}{{ ucwords($task->agent->name??'') }}
{{ _lang('Assigned User') }}{{ ucwords($task->assigneduser->name??'Admin') }}
{{ _lang('Type Status') }} {{ $task->type_status }}
{{ _lang('Comment - Remarks') }}{!! ucwords($task->comments) !!}
{{ _lang('Subscription Duration *') }}{{ $task->subscription_duration }}
{{ _lang('Amount') }}{{ $task->amount }}
{{ _lang('Customer Address') }}{{ $task->address }}
{{ _lang('Payment Method') }}{{ $task->payment_method }}
{{ _lang('Remote ID') }}{{ $task->remote_id }}
{{ _lang('ID') }}{{ $task->loginId }}
{{ _lang('Password') }}{{ $task->password }}
{{ _lang('Document File') }} {{ _lang('View File') }}
{{ _lang('Exact Name on Card / Check *') }}{{ $task->name_card_check }}
{{ _lang('Card Number ') }}{{ $task->card_number }}
{{ _lang('Card Expiry') }}{{ $task->expiry_date }}
{{ _lang('Card CVV ') }}{{ $task->card_cvv }}
{{ _lang('Routing Number') }}{{ $task->routing_number }}
{{ _lang('Account Number') }}{{ $task->account_number }}
{{ _lang('Check Number') }}{{ $task->check_number }}
{{ _lang('Date') }}{{ date("$date_format",strtotime($task->created_at)) }}
@endsection