@extends('layouts.app') @section('title', 'Payroll') @section('content')
Compensation operations

Payroll & compensation

Control payroll runs and compensation review cycles.

▶ Start payroll run
@csrf
@php($latest=$runs->first())
Latest period
{{ $latest?->period ?? '—' }}
Employees
{{ $latest?->employees ?? 0 }}
Gross payroll
${{ number_format($latest?->gross ?? 0,0) }}
Status
{{ $latest?->status ?? '—' }}

Payroll run history

Gross-to-net processing periods

@foreach($runs as $run)@endforeach
PeriodPay dateStatusEmployeesGrossNet
{{ $run->period }}{{ $run->pay_date->format('Y-m-d') }}{{ $run->status }}{{ $run->employees }}${{ number_format($run->gross,2) }}${{ number_format($run->net,2) }}

Compensation cycles

Budget and review progress

@foreach($cycles as $cycle)
{{ $cycle->name }}{{ $cycle->status }}

Due {{ $cycle->due_date->format('d M Y') }}

@endforeach
@endsection