@extends('layouts.main') @section('content')
{{ Form::open(['url' => 'users/index', 'method' => 'POST', 'name' => 'form', 'id' => 'searchform']) }}
受験者情報
{!! Form::close() !!} @if (count($datas) > 0)

検索結果

@foreach($datas as $data) @endforeach
受験者名 E-Mailアドレス 試験結果 登録日
{!! Form::button(" 詳細 ", ["class"=>"btn"]) !!} {{ $data->name }} {{ $data->email }} @if ($data->exam_1_id <> "") {!! Form::button(" MSL適性検査1 ", ["class"=>"btn"]) !!} @endif @if ($data->exam_2_id <> "") {!! Form::button(" MSL適性検査2 ", ["class"=>"btn"]) !!} @endif @if ($data->exam_3_id <> "") {!! Form::button(" MSL適性検査3 ", ["class"=>"btn"]) !!} @endif @if ($data->exam_4_id <> "") {!! Form::button(" YG性格検査 ", ["class"=>"btn"]) !!} @endif {{ $data->created_at }}
{!! Form::close() !!}
@elseif (count($datas) == 0 and $_SERVER["REQUEST_METHOD"] == "POST" )

検索結果

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