@extends('layouts.app') @section('content') {{ Form::open(['url' => 'billconv/index', 'method' => 'POST', 'name' => 'form', 'id' => 'createform', 'files' => true]) }}
請求月 | 請求日 | 売上計上日 | お支払い期限 |
{{ Form::select('bill_month', $month_data, $month, ['class'=>'form-control validate[required, custom[number]]', 'id'=>'bill_month', 'style'=>'width: 70%']) }} | {{ Form::text('bill_date', $bill_date, ['class'=>'form-control validate[required]', 'id'=>'bill_date', 'style'=>'width: 70%']) }} | {{ Form::text('sale_date', $sale_date, ['class'=>'form-control validate[required]', 'id'=>'sale_date', 'style'=>'width: 70%']) }} | {{ Form::text('pay_date' , $pay_date, ['class'=>'form-control validate[required]', 'id'=>'pay_date' , 'style'=>'width: 70%']) }} |