@extends('common/main/layout') @section('content')

@lang('db.reports') @lang('db.report_rests') @lang('system.title.index')

@include('report/info', ['report' => $report])
@include('common/error-message')
@if ($report->waypoints->count() > 0) {{ $report->waypoints->count() }} @endif @if ($report->partners->count() > 0) {{ $report->partners->count() }} @endif @if ($report->rests->count() > 0) {{ $report->rests->count() }} @endif @if (session()->has('checkpoint')) @lang('system.command.back') @else @lang('system.command.back') @endif
@foreach($report_rests as $report_rest) @endforeach
@lang('system.command.edit') @lang('db.report_rest.point') @lang('db.report_rest.start_at') @lang('db.report_rest.end_at') @lang('system.command.delete')
{{ $report_rest->point }} @if(!empty($report_rest->start_at)){{ date('G時i分', strtotime($report_rest->start_at)) }}@endif @if(!empty($report_rest->end_at)){{ date('G時i分', strtotime($report_rest->end_at)) }}@endif
@csrf
@include('common/pagination', ['tables' => $report_rests])
@include('common/script-del_check') @endsection