@extends('layouts.default') @section('header-links') @include('accounts.payrole.header') @endsection @section('title','Paystubs') @section('content')
{{ Form::open() }}
{{ Form::selectGroup('employee','Employee',null,$employees,null,['required'=>'required','data-live-search'=>'true'],'col-lg-3 col-md-4 col-sm-6') }} {{ Form::textGroup('checked_from','Check Date From', 'calendar',['id' => 'checked_from', 'class' => 'form-control', 'required' => 'required', 'data-inputmask' => '\'alias\': \'yyyy/mm/dd\'', 'data-mask' => '' ], Date::now()->format($date_format) ) }} {{ Form::textGroup('checked_to','Check Date To', 'calendar',['id' => 'checked_to', 'class' => 'form-control', 'required' => 'required', 'data-inputmask' => '\'alias\': \'yyyy/mm/dd\'', 'data-mask' => '' ], Date::now()->format($date_format) ) }}
{{ csrf_field() }}
{{ Form::close() }}
Check Date Check Number Total Paid Net Pay Actions
@endsection