@extends('layouts.dashboard.main') {{-- content --}} @section('content') @include('layouts.dashboard.components.report.nav')
@if(isset($report_list))
{!! __("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.topic.title") !!}
  • {!! __("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") !!}
@else @endif
@endsection {{-- css --}} @section('css') @stop {{-- js --}} @section('js') @stop