@extends('layouts.main') @section('content')
{{ Form::open(['url' => 'premainte/index', 'method' => 'POST', 'name' => 'form', 'id' => 'searchform']) }}
メンテナンス情報仮登録
@if ($message <> "")
{!! Form::label("message", $message, ["class"=>"form-control btn-success btn"]) !!}
@endif @if (session()->has('errors'))
    @foreach ($errors->all() as $message)
  • {!! $message !!}
  • @endforeach
@endif
{!! Form::close() !!} @if (count($datas) > 0)

検索結果

@if ($company_id == 0) @endif @if ($company_id == 0) @endif @foreach($datas as $data) @if ($company_id == 0) @endif @endforeach
機番 製品型式 顧客名 顧客名(カナ) 電話番号 郵便番号 住所 担当支店 点検契約 契約日 納入日 点検予定日
@foreach($userfunc as $func) @if ($func->funcurl == '/premainte/show') {{ Form::button(" 詳細 ", ["class"=>"btn"]) }} @endif @endforeach @foreach($userfunc as $func) @if ($func->funcurl == '/premainte/copycreate') {{ Form::button(" 追加 ", ["class"=>"btn"]) }} @endif @endforeach {{ $data->machine_no }} {{ $data->itemmodel }} {{ $data->custname }} {{ $data->name_phonetic }} {{ $data->tel1 }} {{ $data->zipcode }} {{ $data->prefname . $data->address1 . $data->address2 }} {{ $data->branchname }} {{ $data->codename }} {{ $data->contract_ymd }} {{ $data->deliver_ymd }} {{ $data->next_ymd }}{!! Form::button(" 削除 ", ["class" => "btn btn-danger"]) !!}
{!! $datas->appends(['itemcategory'=>$request->itemcategory, 'company_id'=>$request->company_id, 'item_id'=>$request->item_id, 'machine_no'=>$request->machine_no, 'customer_name'=>$request->customer_name, 'customer_namek'=>$request->customer_namek, 'tel'=>$request->tel])->render() !!}
@elseif (count($datas) == 0 and $_SERVER["REQUEST_METHOD"] == "POST" )

検索結果

対象となるデータがありません
@endif
@endsection