@extends('admin.admin-layouts.master') @section('content')
{{ __('Employee Information') }}
@foreach ($emp as $e) @endforeach
{{ __('ID') }} {{ __('Employee') }} {{ __('Department') }} {{ __('Status') }} {{ __('Salary') }}
{{ $e->user_id }} {{ $e->name }} {{ $e->department }} @if ($e->status) {{ __('Active') }} @else {{ __('Deactive') }} @endif {{ $e->salary }}
@if (session()->has('success')) @endif
{{ __('Payment Information') }}
@foreach ($payroll as $p) @endforeach
{{ __('Created Date') }} {{ __('Monthly Salary') }} {{ __('Deduction') }} {{ __('Bonus') }} {{ __('Total Salary') }} {{ __('From Date') }} {{ __('To Date') }} {{ __('Approve key') }} {{ __('Comment') }} {{ __('Action') }}
{{ $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 }}
{{ __('Filter Date') }}
@csrf
@foreach ($attendance as $atd) @endforeach
{{ __('Date') }} {{ __('Name') }} {{ __('In Time') }} {{ __('Out Time') }} {{ __('Worked Hours') }}
{{ $atd->date }} {{ $atd->name }} {{ $atd->timein }} {{ $atd->timeout }} {{ $atd->workedhours }}
{{ __('Attendance Days Information') }}
{{ __('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') }}
@csrf
@endsection @push('style-plugin') @endpush @push('script-plugin') @endpush @push('script') @endpush