@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"]) !!} {!! Form::button(" 対応 ", ["class"=>"btn btn-success"]) !!} {!! $error !!} {{ $data->customer_name }} {{ $data->accept_ymd }} {{ $data->accrual_ymd }} {{ $data->work_ymd }} {{ $data->status_name }} {{ $data->request_info }} {!! Form::button(" 削除 ", ["class" => "btn btn-danger"]) !!}
{!! $datas->appends(['accept_ymd1' => $request->accept_ymd1, 'accept_ymd2' => $request->accept_ymd2, 'accrual_ymd1' => $request->accrual_ymd1, 'accrual_ymd2' => $request->accrual_ymd2, 'status' => $request->status, 'process' => 'search'])->render() !!} {!! Form::close() !!}
@elseif (count($datas) == 0 and $_SERVER["REQUEST_METHOD"] == "POST" )

検索結果

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