@extends('layouts.dashboard.main') {{-- content --}} @section('content') @include('layouts.dashboard.components.report.nav')
{!! __("lang.date.latest") !!}(直近1ヶ月)
{!! __("lang.common.count") !!} : {!! $report_list_count !!}
@if($report_list_count > 0) @foreach($report_list as $key => $value) @endforeach @else @endif
#
{!! __("lang.report.is_important") !!} {!! __("lang.report_file.short_title") !!}
  • {!! __("lang.report.report_subject") !!}
  • {!! __("lang.report.datetime") !!}
  • {!! __("lang.report.staff_name") !!}
{!! $key + 1 !!}
@if($value['is_important']) {!! __("lang.report.is_important") !!} @endif
@if($value['report_file_count'] > 0)
@endif
  • {!! \Carbon\Carbon::parse($value['datetime'])->isoFormat("YYYY年MM月DD日(ddd)") !!}
  • {!! implode(' ', [ $value['staff_sname'], $value['staff_gname'], ]) !!}
{!! __("lang.error.empty") !!}
@endsection {{-- css --}} @section('css') @stop {{-- js --}} @section('js') @stop