@extends('layouts.app') @section('title', 'Employee Salaries') @section('breadcrumbs')
@endsection @section('content')Manage salary structures for all employees
| Employee | Department | Designation | Basic (OMR) | Total (OMR) | Status | Actions |
|---|---|---|---|---|---|---|
|
{{ strtoupper(substr($emp->first_name, 0, 1)) }}
{{ $emp->full_name }}
{{ $emp->employee_code }}
|
{{ $emp->department->name ?? '—' }} | {{ $emp->designation->name ?? '—' }} | {{ $basic ? number_format($basic->amount, 3) : '—' }} | {{ $total > 0 ? number_format($total, 3) : '—' }} | @if($total > 0) Assigned @else Not Assigned @endif | |
|
No employees found Add employees in the HR module first. |
||||||