dbfdg @extends('layouts.admin') @section('page-title') {{ __('Payslip') }} @endsection @section('breadcrumb') @endsection @section('content')
{{ 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() }}
{{ __('Find Employee Payslip') }}
{{ Form::select('year', $year, date('Y'), ['class' => 'form-control year_date ']) }}
{{ Form::open(['route' => ['payslip.export'], 'method' => 'POST', 'id' => 'payslip_form']) }} {{ Form::close() }}
@can('create pay slip') @endcan
{{ __('Employee Id') }} {{ __('Name') }} {{ __('Payroll Type') }} {{ __('Salary') }} {{ __('Net Salary') }} {{ __('Status') }} {{ __('Action') }}
@endsection @push('script-page') @endpush