@extends('layouts.dashboard') @section('content')

Employees Salary List

@if (Session::has('message'))
@endif
@forelse ($employees as $index => $employee) @empty @endforelse
Sr No. Name Employee ID Mobile Number Email Action
{{ $index + 1 }} {{ $employee->name }} {{ $employee->employee_id }} {{ $employee->mobile_number }} {{ $employee->email }}
No active employees found.
@endsection @push('scripts') @endpush