@extends('layouts.user-no-nav') @section('page_title', __('Publisher dashboard')) @section('styles') {!! Minify::stylesheet([ '/css/pages/home.css', '/css/pages/publisher-dashboard.css', ])->withFullUrl() !!} @stop @section('content')
@include('elements.page-navigation-header',[ 'title' => __('Publisher dashboard'), 'points' => [ ['title' => __('Home'), 'route' => route('home')], ['title' => __('Publisher dashboard')], ], 'button' => [ 'title' => __('New job'), 'route' => route('jobs.create') ] ]) @include('elements.message-alert',['classes'=>'alert-box pt-0 pb-4']) @if(count($publisherNextSteps))
{{__('Next steps')}}
@foreach($publisherNextSteps as $step)
{{$step['title']}}

{{$step['description']}}

{{$step['button']}}
@endforeach
@endif

{{$workspace->name}}

{{__('Manage companies, listings, billing, and hiring tools from this workspace.')}}

{{$workspaceStatusLabel}}

@include('elements.icon',['icon'=>'briefcase-outline','variant'=>'small'])
{{__('Jobs')}}
{{$jobsCount}}
{{__('Manage live and draft listings.')}}
@include('elements.icon',['icon'=>'business-outline','variant'=>'small'])
{{__('Companies')}}
{{$companiesCount}}
{{__('Reuse employer profiles.')}}
@include('elements.icon',['icon'=>'people-outline','variant'=>'small'])
{{__('Applicants')}}
{{$applicationsNeedingReviewCount}}
{{__('Review fresh applications.')}}
@include('elements.icon',['icon'=>'checkmark-circle-outline','variant'=>'small'])
{{__('Shortlisted')}}
{{$shortlistedApplicationsCount}}
{{__('Keep strong candidates close.')}}
{{__('Applicants needing review')}}
{{__('View all')}}
@if($applicationsNeedingReview->count()) @foreach($applicationsNeedingReview as $application)
{{$application->candidateDisplayName()}} @if($application->job) {{$application->job->title}}
{{$application->job->company ? $application->job->company->name : __('Company')}}
@else
{{__('Job no longer available')}}
@endif
{{__('New')}}
{{optional($application->appliedDate())->format('M j')}}
@endforeach @else
{{__('No applicants need review')}}

{{__('New candidates will appear here as soon as they apply with JustJobs.')}}

{{__('Open job listings')}}
@endif
{{__('Workspace health')}}
{{__('Active listings')}}
{{$activeJobsCount}}
{{__('Total applicants')}}
{{$applicationsCount}}

{{__('Plans, company profiles, and hiring activity stay tied to this workspace.')}}

@endsection