@extends('scvflow.default') @section('title', 'ダウンロード申請') @section('description', '') @section('content') @if (!empty($authorizers)) {{ html()->form('POST', url('scvflow/request/download'))->acceptsFiles()->open() }}
申請ファイル {{ html()->file('request_file[]')->multiple()->required() }}
    承認者 @foreach($authorizers as $authorizer) @endforeach

    見つかりませんでした。

    選択 ユーザ名 氏名 部署名 役職名 社員番号 任意データ1 任意データ2 任意データ3
    {{$authorizer['name']}} {{$authorizer['jpname']}} {{$authorizer['department']}} {{$authorizer['post']}} {{$authorizer['employee_id']}} {{$authorizer['custom_data1']}} {{$authorizer['custom_data2']}} {{$authorizer['custom_data3']}}
    コメント {!! html()->textarea('comment')->placeholder('省略可能です。') !!}
    {{ html()->submit('申請')->class(['btn', 'btn-sm', 'btn-default']) }} {{ html()->form()->close() }} @else

    承認権限を持つユーザが存在しないため、ダウンロード申請を利用することはできません。

    @endif @stop @section('script') @stop