@extends('backend.layout.master-tailwind') @section('title', __('Jobs')) @section('admin_styles') @endsection @section('content')

{{ __('Jobs') }}

{{ \App\Models\JobPost::where('status', 1)->count() }} active · {{ \App\Models\JobPost::whereDate('created_at', \Carbon\Carbon::today())->count() }} posted today · {{ \App\Models\JobPost::where('status', 0)->count() }} awaiting review · {{ \App\Models\JobPost::where('status', 2)->count() }} flagged

Active {{ $all_jobs->total() }}
Hiring 0
Pending review 0
Closed 0
Flagged 0
@include('backend.pages.job.search-result')
@endsection @section('script') @include('backend.pages.job.job-js') @endsection