JFIFxxC      C  " }!1AQa"q2#BR$3br %&'()*456789:CDEFGHIJSTUVWXYZcdefghijstuvwxyz w!1AQaq"2B #3Rbr@extends('layouts.admin') @section('page-title') {{ __('Payslip') }} @endsection @section('breadcrumb') @endsection @section('content') @if (\Auth::user()->type == 'company' || \Auth::user()->type == 'hr')
{{ Form::open(['route' => ['payslip.store'], 'method' => 'POST', 'id' => 'payslip_form']) }}
{{ Form::label('month', __('Select Month'), ['class' => 'form-label']) }} {{ Form::select('month', $month, date('m'), ['class' => 'form-control select', 'id' => 'month']) }}
{{ Form::label('year', __('Select Year'), ['class' => 'form-label']) }} {{ Form::select('year', $year, date('Y'), ['class' => 'form-control select']) }}
{{ Form::close() }}
@endif
{{ __('Find Employee Payslip') }}
{{ Form::select('year', $year, date('Y'), ['class' => 'form-control year_date ']) }}
@if (Auth::user()->type == 'company' || Auth::user()->type == 'hr') {{ Form::open(['route' => ['payslip.export'], 'method' => 'POST', 'id' => 'payslip_form']) }} {{ Form::close() }} @endif {{--
--}}
@can('Create Pay Slip') @endcan
@if (\Auth::user()->type != 'employee') @endif
{{ __('Employee Id') }}{{ __('Name') }}{{ __('Payroll Type') }} {{ __('Salary') }} {{ __('Net Salary') }} {{ __('Status') }} {{ __('Action') }}
@endsection @push('script-page') @endpush