@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']) !!}
{{ Form::open(['url'=>'consultant_list', 'method'=>'POST', 'id'=>'listForm', 'style'=>'display: none;']) }} {{ Form::hidden('type', null, ['id'=>'listType']) }} {{ Form::hidden('list_dates', null, ['id'=>'listDates']) }} {{ Form::close() }} {{-- Consultant Calls --}} {{ Form::hidden('load_more1', 0, ['id'=>'load_more1']) }}

My Tasks

Call back date Consultant Call Status Actions
load more...

To Do List

Task Actions
{{-- Consultant List --}} {{ Form::hidden('load_more2', 0, ['id'=>'load_more2']) }}

Recent Consultants List

Date Consultant 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 Job Status Submitted By Actions
{{ date(env('APP_DATE'), strtotime($li->created_at)) }} {{ ucfirst($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)):'' }} @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 & Consultant 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 --}} {{-- Live Data --}} {{-- End Live Data --}} {{-- Includes --}} @include('includes.date-range-script') @include('includes.morris-graph') @include('includes.datepicker') {{-- Chart JS --}} {{-- --}} {{-- Call Status --}} {{-- Ends Call Status --}} {{-- MAP --}} @stop