@extends('layouts.master') @section('title') {{ __('payroll') }} @endsection @section('content')
@csrf

{{ __('create') . ' ' . __('payroll') }}

{!! Form::select('month', $months, null, ['class' => 'form-control', 'id' => 'month']) !!}
{!! Form::selectRange( 'year', $sessionYear, date('Y', strtotime(Carbon\Carbon::now())), date('Y', strtotime(Carbon\Carbon::now())), ['class' => 'form-control', 'id' => 'year'], ) !!}

{{ __('list') . ' ' . __('payroll') }}

{!! Form::text('date', null, ['required', 'class' => 'form-control datepicker-popup', 'id' => 'date']) !!}
{{ __('id') }} {{ __('no.') }} {{ __('name') }} {{ __('status') }} {{ __('basic_salary') }} {{ __('Monthly Allowed Paid Leaves') }} {{ __('taken_leaves') }} {{ __('salary_deduction') }} {{ __('allowances') }} {{ __('deductions') }} {{ __('net_salary') }} {{ __('action') }}
@endsection @section('script') @endsection