@extends('adminlte::page') @section('title', 'アフターサポート検査票 バージョン管理') @section('content_header')
@stop @section('content')
@if(Gate::forUser(\Auth::user())->allows('employeeOperation', 'maintenance|2')) @endif

検査票:{{ $survey->name }}

{{ $survey->number_of_times }}サポート回数目

@if ($versions->isNotEmpty())

全{{ $versions->total() }}件中 {{ $versions->firstItem() }} - {{ $versions->lastItem() }}件表示

@endif
@foreach ($versions as $key => $version) @endforeach
バージョン バージョン説明 適用開始日 適用終了日 編集
{{ $version->number }} {{ $version->description }} {{ $version->start_date->format('Y-m-d') }} {{ $version->end_date ? $version->end_date->format('Y-m-d') : '' }} ページ一覧 @if(Gate::forUser(\Auth::user())->allows('employeeOperation', 'maintenance|2')) 検査票編集 検査票コピー バージョン編集 @endif
@if ($versions->count() > 0)
{{ $versions->links() }}
@endif
@stop @section('css') @stop