{{-- Policies — read and digitally acknowledge company policies. From EmployeePolicyController@index: $policies = Collection each with ->is_acknowledged (bool) and ->acknowledged_at (Carbon|null) $pendingCount = int // policies requiring acknowledgment that are still outstanding --}} @extends('layouts.app') @section('title', 'Policies') @section('content') @include('employee._flash') @if($pendingCount > 0)
description

You have {{ $pendingCount }} {{ Str::plural('policy', $pendingCount) }} awaiting your acknowledgment.

@endif @if($policies->isEmpty())
description

No policies published

Company policies will appear here once published.

@else
@endif @endsection