@extends('layouts.default') @section('title', 'Apply consultants for job') @section('header-links') @include('includes.headers.vendor_submissions') @endsection @section('new_button') list Consultant list @endsection @section('content') {{ Form::open(['url'=>'save_consultant_job', 'id'=>'saveForm']) }}
{{ Form::hidden('consultant_id', $consultant->id) }} @foreach ($applied as $li) @endforeach @foreach ($notapplied as $li) @endforeach
Title Location Employment Type Experience Pay Rate Client Name Job Status Status Actions
{{ ucwords(Str::limit($li->title, 15)) }} {{ ucwords($li->country?->name) }} {{ ucwords(str_replace('_', ' ' , $li->employment_type)) }} {{ $li->min_experience }} - {{ $li->max_experience }} {{ $li->min_payrate }} - {{ $li->max_payrate }} {{ $li->client?->name }} {{ ucwords($li->status) }} {{ ucwords('Applied') }}
{{ ucwords(Str::limit($li->title, 15)) }} {{ ucwords($li->country?->name) }} {{ ucwords(str_replace('_', ' ' , $li->employment_type)) }} {{ $li->min_experience }} - {{ $li->max_experience }} {{ $li->min_payrate }} - {{ $li->max_payrate }} {{ $li->client?->name }} {{ ucwords($li->status) }} {{ ucwords('Not Applied') }} @form_checkbox('job_id[]', $li->id)
{{ Form::numberGroup('payrate', 'Payrate', null, ['id'=>'payrate', 'required'=>'required']) }}
{{ Form::close() }} @stop