@extends('admin._layouts.fileupload') @section('content')

Process Job Applications

@include('admin._partials.notifications')
@csrf id) value="{{encrypt($obj->id)}}" @endif id="inputId">
{{$obj->job->name}} ({{$obj->job->job_code}})
{{$obj->name}}
{{$obj->phone_number}}
{{$obj->email}}
@if($obj->extra_data) @php $extra_data = json_decode($obj->extra_data, true); @endphp @foreach($extra_data as $key=>$eData)
{{$eData}}
@endforeach @endif
{{$obj->message}}
Download
{{$obj->ip_address}}
{{$obj->user_agent}}
{{$obj->referrer_link}}
@if($obj->status == 'Open') Open @elseif($obj->status == 'Processing') Processing @elseif($obj->status == 'Selected') Selected @else Rejected @endif
{{$obj->remarks}}
Publish
{{date('d M, Y h:i A', strtotime($obj->created_at))}}
{{date('d M, Y h:i A', strtotime($obj->updated_at))}}
@if(!$obj->updated_user) {{auth()->user()->name}} @else {{$obj->updated_user->name}} @endif
@if(auth()->user()->can($permissions['edit']))
@endif
@if(auth()->user()->can($permissions['edit'])) @endif
@include('admin._partials.footer')
@endsection @section('footer') @parent @endsection