@extends('layouts.main') @section('content')
{{ Form::open(['url' => 'order/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
@if (count($datas) > 0)

検索結果

{{-- 通知メッセージ --}} @if ($message <> "")
{{ Form::label("message", $message, ["class"=>"form-control btn-success btn"]) }}
@endif
@foreach($datas as $data) @endforeach
作業店 取引状況 受注番号 受注日 会社名 担当者名 郵便番号 住所 電話番号 メールアドレス
{!! Form::button(" 詳細 ", ["class"=>"btn"]) !!} {{ $data->name_abbr }} {{ $data->status_name }} {{ $data->order_id }} {{ $data->create_date }} {{ $data->order_company_name }} {{ $data->order_name01 . " " . $data->order_name02 }} {{ $data->order_zip01 . "-" . $data->order_zip02 }} {{ $data->prefname . $data->order_addr01 . $data->order_addr02 }} {{ $data->order_tel01 . "-" . $data->order_tel02 . "-" . $data->order_tel03 }} {{ $data->order_email }}
@elseif (count($datas) == 0 and $_SERVER["REQUEST_METHOD"] == "POST" )

検索結果

対象となるデータがありません
@endif {{ Form::close() }}
@endsection