@extends('layouts/contentLayoutMaster') @section('title', 'Task Details') @section('vendor-style') {{-- Page Css files --}} @endsection @section('page-style') {{-- Page Css files --}} @endsection @php $configData = Helper::applClasses(); $users = Auth::user(); $roles = $users->roles()->pluck('name')->implode(' '); @endphp @section('content') @if($errors->any())
@endif

Task Details

Candidate Details

@if($roles != 'VENDOR_OPERATIONS' && $roles != 'VENDOR_ADMIN')

Client Details

@endif

Task Name: {{ $tasks->internal_name }}
Task Status: {{ $tasks->status }}
Priority: {{ $tasks->priority }}
TAT: {{ date('d M Y', strtotime($tasks->tat)) }}
Recieved Date: {{ date('d M Y', strtotime($tasks->created_at)) }}

{{ $employees->first_name }} {{ $employees->middle_name }} {{ $employees->last_name }} @if($employees->employee_code) ({{ $employees->employee_code }}) @else ({{ $employees->employee_custom_id }}) @endif

Father's Name: {{ $employees->co_name }}
Mobile: {{ $employees->mobile }}
Alise Name: {{ $employees->alias }}
Gender: {{ $employees->gender == 'M' ? 'Male' : 'Female' }}
DOB: {{ date('d M Y', strtotime($employees->dob)) }}

@if($roles != 'VENDOR_OPERATIONS' && $roles != 'VENDOR_ADMIN') @endif
@if($message = Session::get('success')) @endif @php if(isset($addresses)): $aadr = $addresses->street_addr1.' '. $addresses->street_addr2.' '. $addresses->village.' '. $addresses->post_office.' '. $addresses->police_station.' '. $addresses->district.' '. $addresses->near_by.' '. $addresses->city.' '. $addresses->state.' '. $addresses->pincode; endif; @endphp @if($vpdata && $tasks->task_display_id == 'CRC')
@endif @if($tasks->task_display_id == 'CRC')
@endif

{{ $tasks->internal_name }} Verification Fields

@if($tasks->task_display_id == 'AV_POSTAL' || $tasks->task_display_id == 'EDUCATION_VERIFICATION') @else @endif {{ csrf_field() }} {{-- @dd($tasks) --}} @include('orders.'.strtolower($tasks->task_display_id))
Fields Candidate Data Verified MatchedUnable to VerifyPartial MatchMis Match
@if($lasthistories->task_status != 'COMPLETE') @if($is_doc_uploaded) Save @endif @endif @if($roles != 'VENDOR_OPERATIONS') @if($is_doc_uploaded && $is_open) Finalize Report @endif @if(!empty($lasthistories->report_url) && ($roles != 'VENDOR_OPERATIONS' OR $roles != 'VENDOR_ADMIN')) Download Report @endif @endif @if($tasks->task_display_id == 'AV_POSTAL_PRESENT' || $tasks->task_display_id == 'AV_POSTAL_PERMENENT') Print Postal Send Link @endif @if($tasks->task_display_id == 'AV_DIGITAL') Send Messege @endif @if($tasks->task_display_id == 'AV_DIGITAL') Send Messege @endif @if($tasks->task_display_id == 'FACE_MATCH' && empty($lasthistories->antecedants_data)) Verify Face Match @endif @if($tasks->task_display_id == 'DBC_GLOBAL') Verify @endif
@if(isset($comments) && count($comments) > 0)

Comments:

@foreach ($comments as $comment) @endforeach
No. Comments Comment By Created At
{{ $comment->id }} {{ $comment->message }} {{ $comment->first_name }} {{ $comment->last_name }} {{ $comment->created_at }}
@endif @if(isset($insuffs) && count($insuffs) > 0)

Insuffs:

@foreach ($insuffs as $insuff) @endforeach
No. Insuffs Insuffs By Created At
{{ $insuff->id }} {{ $insuff->message }} {{ $insuff->first_name }} {{ $insuff->last_name }} {{ $insuff->created_at }}
@endif
{{-- Reopen Task Modal --}} {{-- Close Task Modal --}} {{-- Add Comment Modal --}} {{-- Raise Insuff Modal --}} {{-- Upload Avtar Modal --}} @endsection @section('vendor-script') @endsection @section('page-script') @if($tasks->status == '1') @endif @endsection