@extends('layouts.master') @section('content')
@foreach ($job_list as $key=>$items ) @php $apply = DB::table('apply_for_jobs')->where('job_title',$items->job_title)->count(); @endphp @endforeach
No Job Title Department Start Date Expire Date Job Type Status Applicants Actions
{{ ++$key }} {{ $items->job_title }} {{ $items->department }} {{ date('d F, Y',strtotime($items->start_date)) }} {{ date('d F, Y',strtotime($items->expired_date)) }} {{ $apply }} Candidates
@section('script') {{-- update --}} @endsection @endsection