@extends('layouts.app') @section('title', 'Payroll Management') @section('breadcrumbs') @endsection @section('content')

Payroll Management

Process and manage employee salaries

Total Salary

$157,500

Processed

38

Pending

5

Total Employees

43

@for ($i = 0; $i < 15; $i++) @endfor
Employee Basic Allowances Deductions Net Salary Status Actions
Employee {{ $i + 1 }} ${{ number_format(3750 * ($i + 1), 2) }} ${{ number_format(500, 2) }} ${{ number_format(400, 2) }} ${{ number_format(3850 * ($i + 1), 2) }} @if ($i % 4 === 0) Pending @else Paid @endif Slip @if ($i % 4 === 0) @endif

Showing 1 to 15 of 43 employees

Export Options

@endsection