@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, null, ['class' => 'form-control select', 'id' => 'month']) }}
{{ Form::label('year', __('Select Year'), ['class' => 'form-label']) }} {{ Form::select('year', $year, null, ['class' => 'form-control select']) }}
{{ Form::close() }}
{{--
--}}
{{ __('Find Employee Payslip') }}
{{-- --}}
{{ Form::select('year', $year, null, ['class' => 'form-control year_date ']) }}
@can('Create Pay Slip') @endcan
{{--
{{ Form::select('year', $year, null, ['class' => 'form-control year_date ']) }}
@can('Create Pay Slip') @endcan --}} {{--
--}}
{{-- --}}
{{ __('Id') }}{{ __('Employee Id') }} {{ __('Name') }} {{ __('Payroll Type') }} {{ __('Salary') }} {{ __('Net Salary') }} {{ __('Status') }} {{ __('Action') }}
@endsection @push('script-page') @endpush