@extends('layout.default') @section('content') @if ($errors->any()) @foreach($errors->all() as $error)

{{ $error }}

@endforeach @endif {{ html()->form('DELETE', route('policy.destroy', $policy->id))->id('delete')->open() }} @if($policy->match_type != 0) {{ html()->submit('削除')->id('delete_button') }} @endif
ポリシー名 {{ $policy->name }}
マッチタイプ {{$policy->match_type_string}}
スケジュール {{ $policy->scheduled_string }}
実行時刻 {{ $policy->scheduled_start_time }} から {{ $policy->scheduled_time_period }} 時間
アップデートサーバ {{ $policy->update_from }}
対象アプリケーション {{ $policy->target_application_string }}
アップデートメニュー非表示化 {{ $policy->hide_update_menu_string }}
ポリシー更新間隔 {{ $policy->policy_refresh_interval }} 時間
@endsection @section('script') @endsection