@extends('layouts.mainlayout') @section('title', 'Payroll & AGI | Manpower Sweden') @section('fullwidth', true) @section('content')
ACCOUNTANCY

Payroll & AGI

Monthly payroll preparation, review and Skatteverket reporting.

@if(session('success'))
{{ session('success') }}
@endif @if($errors->any())
{{ $errors->first() }}
@endif
Create monthly payroll run
@csrf
Payroll runs
@forelse($runs as $run) @empty@endforelse
PeriodStatusWorkersAgreed NETPayoutAction
{{ sprintf('%04d-%02d', $run->year, $run->month) }}{{ str_replace('_',' ',ucfirst($run->status)) }}{{ $run->workers }}{{ number_format($run->agreed_total,2,'.',' ') }} SEK{{ number_format($run->payout_total,2,'.',' ') }} SEKOpen
No payroll runs yet.
@endsection