@extends('layouts.app') @section('title') All Employees @stop @section('breadcrumb') @stop @section('css') @stop @section('content')

Manage Employee Salary

{{--

Add Employee

--}}
@if(Session::has('success')) @endif
@php $couter = 1; @endphp @if($HrmEmployees->count() > 0 ) @foreach($HrmEmployees as $HrmEmployee ) @endforeach @endif
# ID Name DESIGNATION Monthly Salary Action
{{$couter++}} {{$HrmEmployee->companyDetail ? $HrmEmployee->companyDetail->employee_code : ''}} {{$HrmEmployee->name}} {{$HrmEmployee->companyDetail ? $HrmEmployee->companyDetail->designation : ''}} {{$HrmEmployee->companyDetail ? $HrmEmployee->companyDetail->monthly_salary : ''}} {{--
Payslip
   
Click To Paid
--}}        
@stop @section('js') @stop