@extends('layouts.default') @section('new_button') remove_red_eye Job list @endsection @section('content')
{{-- Job details --}}
Job Details
{{ ucfirst($job->title) }}
{{ ucwords($job->country?->name) }}
{{ $job->min_experience }}Y - {{ $job->max_experience }}Y
{{ $job->min_payrate }} - {{ $job->max_payrate }}
{{ config('custom.interview_modes')[$job->interview_mode]}}
{{ config('custom.employment_types')[$job->employment_type]}}
@if($job->status == 0) Open @elseif ($job->status == 1) Closed @elseif ($job->status == 2) Pending @else ... @endif
{{ ucfirst($job->internal_message) }}
{{ ucfirst(Str::limit(strip_tags($job->description, 20))) }}
Vendor Details @foreach($job->vendor as $vendor)
{{ ucfirst($vendor->vendor?->name) }}
{{ $vendor->vendor?->country?->name }}
{{ $vendor->vendor?->website }}
@endforeach
Implementer Details
{{ ucfirst($job->implementor?->name) }}
{{ $job->implementor?->country?->name }}
{{ $job->implementor?->website }}
Client Details
{{ ucfirst($job->client?->name) }}
{{ $job->client?->country?->name }}
{{ $job->client?->website }}
{{-- Shared --}}

Shared Profiles

@csrf @if(count($shared) > 0) @foreach($shared as $k=>$share) @endforeach @else @endif
Name Mobile Email Visa Type Location Specific Status Action
{{ $share->consultant?->name }} {{ $share->consultant?->mobile }} {{ $share->consultant?->email }} {{ $share->consultant?->visa_status }} {{ $share->consultant?->country?->name }} {{ ucwords($share->status) }}
No Student(s) Found...
{{-- Scheduled --}}

Schedule Interviews

@if(count($scheduled) > 0) @foreach($scheduled as $k=>$schedule) @endforeach @else @endif
Name Mobile Email Visa Type Location Specific Status Action
{{ $schedule->consultant?->name }} {{ $schedule->consultant?->mobile }} {{ $schedule->consultant?->email }} {{ $schedule->consultant?->visa_status }} {{ $schedule->consultant?->country?->name }} {{ ucwords($schedule->status) }}
No Student(s) Found...
{{ csrf_field() }}
{{-- Attended --}}

Mark as Attended

@if(count($attended) > 0) @foreach($attended as $k=>$attend) @endforeach @else @endif
Name Mobile Email Visa Type Location Specific Status Action
{{ $attend->consultant?->name }} {{ $attend->consultant?->mobile }} {{ $attend->consultant?->email }} {{ $attend->consultant?->visa_status }} {{ $attend->consultant?->country?->name }} {{ ucwords($attend->status) }}
No Student(s) Found...
{{ csrf_field() }}
{{-- Selected --}}

Mark as Selected

@if(count($selected) > 0) @foreach($selected as $k=>$select) @endforeach @else @endif
Name Mobile Email Visa Type Location Specific Status Action
{{ $select->consultant?->name }} {{ $select->consultant?->mobile }} {{ $select->consultant?->email }} {{ $select->consultant?->visa_status }} {{ $select->consultant?->country?->name }} {{ ucwords($select->status) }}
No Student(s) Found...
{{ csrf_field() }}
{{-- Joined --}}

Mark as Joined

@if(count($joined) > 0) @foreach($joined as $k=>$join) @endforeach @else @endif
Name Mobile Email Visa Type Location Specific Status
{{ $join->consultant?->name }} {{ $join->consultant?->mobile }} {{ $join->consultant?->email }} {{ $join->consultant?->visa_status }} {{ $join->consultant?->country?->name }} {{ ucwords($join->status) }}
No Student(s) Found...
{{ csrf_field() }}
@stop