@extends('layouts.dashboard.main') {{-- content --}} @section('content') {!! Form::open($form) !!} @for($i = 0; $i < Session::get('application.wifi.count'); $i++) {!! Form::hidden("wifi[device][$i]", $wifi['device'][$i]) !!} {!! Form::hidden("wifi[usage][$i]", $wifi['usage'][$i]) !!} @endfor {!! Form::hidden("wifi[action]", 'insert') !!} {!! Form::hidden('wifi[remark]', $wifi['remark']) !!} {!! __("lang.application.wifi.title") !!} 申請職員 {!! implode(' ', [ Session::get('staff.staff_sname'), Session::get('staff.staff_gname'), ]) !!} 申請部署 {!! Session::get('staff.center_label') !!} @if(!is_null(Session::get('staff.department_label'))) {!! Session::get('staff.department_label') !!} @endif @if(!is_null(Session::get('staff.division_label'))) {!! Session::get('staff.division_label') !!} @endif @for($i = 0; $i < Session::get('application.wifi.count'); $i++) {!! $i + 1 !!}台目 利用端末 端末種別 {!! $device_list[$wifi['device'][$i]] !!} 利用目的 {!! $usage_list[$wifi['usage'][$i]] !!} @endfor 連絡事項 {!! (is_null($wifi['remark'])) ? 'なし' : nl2br($wifi['remark']) !!} {!! __("lang.button.submit") !!} {!! __("lang.button.back") !!} {!! Form::close() !!} @endsection {{-- css --}} @section('css') @stop {{-- js --}} @section('js') @stop
{!! (is_null($wifi['remark'])) ? 'なし' : nl2br($wifi['remark']) !!}