@extends('layout.default') @section('head') @endsection @section('content') @if(Session::has('err'))

{{session('err')}}

@endif @if ($errors->any()) @foreach($errors->all() as $error)

{{ $error }}

@endforeach @endif

追加するユーザ ({{ number_format(count($adduser)) }}件)

@if(empty($adduser))

追加するユーザはありません。

@else
@foreach($adduser as $au) @endforeach
ユーザ名 メールアドレス 社員番号 氏名 部署 役職 任意データ1 任意データ2 任意データ3 承認権限 承認グループ 備考
{{$au->name}} {{$au->mail}} {{$au->employee_id}} {{$au->jpname}} {{$au->department}} {{$au->post}} {{$au->custom_data1}} {{$au->custom_data2}} {{$au->custom_data3}} {{($au->privilege) ? 'あり' : 'なし'}} {{$au->flow_group}} {{$au->comment}}
@endif

削除するユーザ ({{ number_format(count($deluser)) }}件)

@if(empty($deluser))

削除するユーザはありません。

@else
@foreach($deluser as $du) @endforeach
ユーザ名 メールアドレス 社員番号 氏名 部署 役職 任意データ1 任意データ2 任意データ3 承認権限 承認グループ 備考
{{$du->name}} {{$du->email}} {{$du->employee_id}} {{$du->jpname}} {{$du->department}} {{$du->post}} {{$du->custom_data1}} {{$du->custom_data2}} {{$du->custom_data3}} {{($du->privilege) ? 'あり' : 'なし'}} {{$du->flow_group}} {{$du->comment}}
@endif @if(!empty($adduser) || !empty($deluser))
{{Form::open(['url' => '/scvmanager/scvusers/ldapsearch/' . $ldapid, 'method' => 'post'])}} {{Form::close()}} @endif @endsection