@extends('layouts.default') @section('title', trans('general.title.new', ['type' => trans_choice('general.setuppayrole', 1)])) @section('content')
{!! Form::open(['method' => 'POST', 'url' => '/payrole/setuppayrole', 'class' => 'form-horizontal', 'id'=>'']) !!}
{{ Form::textGroup('month_from', 'Month From', 'calendar',['id' => 'month_from', 'class' => 'form-control', 'required' => 'required', 'data-inputmask' => '\'alias\': \'yyyy/mm/dd\'', 'data-mask' => '' ], Date::now()->startOfMonth()->format($date_format) ) }} {{ Form::textGroup('month_to', 'Month To', 'calendar',['id' => 'month_to', 'class' => 'form-control', 'required' => 'required', 'data-inputmask' => '\'alias\': \'yyyy/mm/dd\'', 'data-mask' => '' ], Date::now()->endOfMonth()->format($date_format) ) }} {{ Form::textGroup('checked_at', "Check Date", 'calendar',['id' => 'checked_at', 'class' => 'form-control', 'required' => 'required', 'data-inputmask' => '\'alias\': \'yyyy/mm/dd\'', 'data-mask' => '' ], Date::now()->format($date_format) ) }}
@foreach($customers as $customer) @endforeach
Consultant Name Vendor Name Payrate Regular Regular Hours Salary Amount Payrate OT OT Hours Misc Amount Final Amount Reimbursement Amount
{{ $customer->name }} {{ Form::textGroup1('payrate_reg', ' ') }} {{ Form::textGroup1('regular_hours', ' ') }} {{ Form::textGroup1('salary_amount', ' ') }} {{ Form::textGroup1('payrate_ot', ' ') }} {{ Form::textGroup1('ot_hours', ' ') }} {{ Form::textGroup1('misc_amount', ' ') }} {{ Form::textGroup1('final_amount', ' ') }} {{ Form::textGroup1('rei_amount', ' ') }}
Cancel
{{ Form::close() }}
@endsection