@extends('layouts.default') @section('title', 'Dashboard') @section('new_button')
calendar_today  
@endsection @section('content') {{ Form::hidden('total_consultants', $all['total'], ['id'=>'total_consultants_hidden'])}}
{{-- ALL --}}
{{-- ENQUIRY --}}
{{-- PROSPECTS --}}
{{-- IN TRAINING --}}
{{-- ON BENCH --}}
{{-- IN JOB --}}
{{-- DROPPED --}}
{{-- VISA TYPES --}}
{!! Form::select('visa_status', $visas + ['total'=>'Total Visas'], 'total', ['id'=>'visa_status_1', 'class'=>'selectpicker']) !!}
{{-- Consultant Calls --}} {{ Form::hidden('load_more1', 0, ['id'=>'load_more1']) }}

Latest Call Leads

Call back date Student Email Phone Call Status Actions
load more...
{{-- Consultant List --}} {{ Form::hidden('load_more2', 0, ['id'=>'load_more2']) }}

Recent Consultants List

Date Name Mobile Email Technologies Visa Type Status Creater Action
load more...
{{-- Consultant Submissions --}} @if(count($submissions) > 0)

Recent Vendor Submissions

@foreach ($submissions as $li) @endforeach
Date Consultant Job Title Job Location Client Name Client Location Interview Date Pay Rate Job Status Submitted By Actions
{{ date(env('APP_DATE'), strtotime($li->created_at)) }} {{ ucwords($li->consultant?->name) }} {{ ucwords($li->job?->title) }} {{ ucwords($li->job?->country?->name) }} {{ ucwords($li->job?->client?->name) }} {{ ucwords($li->job?->client?->country?->name) }} {{ ($li->interview_date != '')?date(env('APP_DATE'), strtotime($li->interview_date)):'' }} {{ $li->job?->min_payrate }} @if($li->status != 'joined') {{ $vendor_statuses[$li->status] }} @else Joined @endif {{ ucwords($li->creater?->name) }} create mail
@endif {{-- Consultant Graph --}}
{!! Form::select('consultants_select', $statuses, null, ['class'=>'selectpicker get_graph_data', 'id'=>'consultants_type']) !!}
{!! Form::selectYear('consultants_joined_year', 1990, date('Y'), date('Y'), ['class'=>'selectpicker get_graph_data', 'id'=>'consultants_joined_year']) !!}
{{-- Chats --}}
@include('chat.dashboard_chat')
@include('chat.personal_chat')
{{-- Weather widgets --}}
NEW YORK WEATHER
@include('includes.weather-time')
@include('includes.timezone')
{{-- Client Location --}}

States Wise Clients Map

{!! Form::select('map_data_type', ['clients'=>'Client', 'consultants' => 'Consultant'], 'consultants', ['class'=>'selectpicker', 'style'=>'width:100%;','id'=>'map_data_type', 'onchange'=>'mapLoadData($(this).val())']) !!}
Alternative content for the map
@include('includes.new-mail') {{-- Ends New Mail --}} {{-- Add Comment --}} @include('includes.new-comment') {{-- Ends Add Comment --}} {{-- Includes --}} @include('includes.date-range-script') @include('includes.morris-graph') @include('includes.datepicker') {{-- Call Status --}} {{-- Ends Call Status --}} {{-- MAP --}} @stop