@extends('layouts.main') @section('content')
{{ Form::open(['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)

登録情報一覧

@foreach($datas as $data) @endforeach
受付日 発生日 対応状況 ユーザー名 依頼内容
{!! Form::button(" 詳細 ", ["class"=>"btn"]) !!} {{ $data->accept_ymd }} {{ $data->accrual_ymd }} {{ $data->status_name }} {{ $data->customer_name }} {{ $data->request_info }} {!! Form::button(" 削除 ", ["class" => "btn btn-danger"]) !!}
{!! Form::close() !!}
@endif
@endsection