@extends('admin.admin-layouts.master')
@section('content')
{{ __('ID') }} |
{{ __('Employee') }} |
{{ __('Department') }} |
{{ __('Status') }} |
{{ __('Salary') }} |
@foreach ($emp as $e)
{{ $e->user_id }} |
{{ $e->name }} |
{{ $e->department }} |
@if ($e->status)
{{ __('Active') }}
@else
{{ __('Deactive') }}
@endif
|
{{ $e->salary }} |
@endforeach
@if (session()->has('success'))
{{ session('success') }}
@endif
{{ __('Created Date') }} |
{{ __('Monthly Salary') }} |
{{ __('Deduction') }} |
{{ __('Bonus') }} |
{{ __('Total Salary') }} |
{{ __('From Date') }} |
{{ __('To Date') }} |
{{ __('Approve key') }} |
{{ __('Comment') }} |
{{ __('Action') }} |
@foreach ($payroll as $p)
{{ $p->created_at }} |
{{ $p->salary }} |
{{ $p->deduction }} |
{{ $p->bonus }} |
{{ $p->total_salary }} |
{{ $p->fromdate }} |
{{ $p->todate }} |
@if ($p->approve_key == 1)
{{__('Pending')}}
@else
{{__('Done')}}
@endif
|
{{ $p->comment }} |
|
@endforeach
{{ __('Date') }} |
{{ __('Name') }} |
{{ __('In Time') }} |
{{ __('Out Time') }} |
{{ __('Worked Hours') }} |
@foreach ($attendance as $atd)
{{ $atd->date }} |
{{ $atd->name }} |
{{ $atd->timein }} |
{{ $atd->timeout }} |
{{ $atd->workedhours }} |
@endforeach
{{ __('From Date') }} |
{{ __('Till Date') }} |
{{ __('Days') }} |
{{ __('Salary') }} |
@if (session()->has('from'))
{{ session('from') }}
@else
N/A
@endif
|
@if (Session::has('to'))
{{ Session::get('to') }}
@else
N/A
@endif
|
{{ count($attendance) }} |
{{ $e->salary }} |
{{ __('Add Salary') }}
@endsection
@push('style-plugin')
@endpush
@push('script-plugin')
@endpush
@push('script')
@endpush