@extends('layouts.app') @section('content')
Employee ID: {{ $employee->employee_id }}
Position: {{ $employee->position }}
Department: {{ $employee->department }}
Basic Salary: {{ number_format($employee->basic_salary,2) }}
Allowances: {{ number_format($employee->allowances,2) }}
@endsection