JFIFxxC      C  " }!1AQa"q2#BR$3br %&'()*456789:CDEFGHIJSTUVWXYZcdefghijstuvwxyz w!1AQaq"2B #3Rbr@extends('layouts.admin') @section('page-title') {{ __('Manage Job Application') }} @endsection @section('breadcrumb') @endsection @php $logo = \App\Models\Utility::get_file('uploads/avatar/'); $profile = \App\Models\Utility::get_file('uploads/job/profile/'); @endphp @push('css-page') @endpush @push('script-page') {{-- --}} @endpush @section('action-button') @can('Create Job Application') @endcan @endsection @section('content')
{{ Form::open(['route' => ['job-application.index'], 'method' => 'get', 'id' => 'applicarion_filter']) }}
{{ Form::label('start_date', __('Start Date'), ['class' => 'form-label']) }} {{ Form::date('start_date', $filter['start_date'], ['class' => 'month-btn form-control current_date']) }}
{{ Form::label('end_date', __('End Date'), ['class' => 'form-label']) }} {{ Form::date('end_date', isset($_GET['end_date']) ? $_GET['end_date'] : '', ['class' => 'month-btn form-control current_date', 'autocomplete' => 'off']) }}
{{ Form::label('job', __('Job'), ['class' => 'form-label']) }} {{ Form::select('job', $jobs, $filter['job'], ['class' => 'form-control select ', 'id' => 'job_id']) }}
{{ Form::close() }}
@php $json = []; foreach ($stages as $stage) { $json[] = 'kanban-blacklist-' . $stage->id; } @endphp
@foreach ($stages as $key => $stage) @php $applications = $stage->applications($filter) @endphp
{{ count($applications) }}

{{ $stage->title }}

{{--
@foreach ($applications as $application)
{{ $application->name }}
    @for ($i = 1; $i <= 5; $i++) @if ($i <= $application->rating) @else @endif @endfor
    {{ !empty($application->jobs) ? $application->jobs->title : '' }}
  • {{ \Auth::user()->dateFormat($application->created_at) }}
@endforeach
@endforeach
@endsection @push('script-page') @endpush