@extends('layouts.dashboard.main') {{-- content --}} @section('content') @include('layouts.dashboard.components.report.nav')
{!! \Carbon\Carbon::create( $yy, $mm, 1 )->format(__("lang.date.yymm")) !!}
@for($i = 1; $i <= 12; $i++) {!! implode('', [ $i, __("lang.date.mm"), ]) !!} @endfor
{!! __("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(is_null($value['timestamp']))
未読 {{----}}
@endif
@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