@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->id }} {{ $data->create_date }} @if ($data->order_company_name <> '') {{ $data->order_company_name }} @else {{ $data->order_name01 }} {{ $data->order_name02 }} @endif {{ $data->memo01 }} {{ $data->memo02 }} {{ $data->product_name }} {{ $data->quantity }} {{ $data->memo03 }} {{ $data->memo04 }} {{ $data->deliv_time }} {{ $data->shipping_date }} {{ $data->shipping_time }}
@elseif (count($datas) == 0 and $_SERVER["REQUEST_METHOD"] == "POST" )

検索結果

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