@extends('layouts.admin') @section('title', 'パフォーマンスレポート') @section('content')

パフォーマンスレポート

新しいレポートを生成
クイックアクション
保存されたレポート
@if(empty($reports))
保存されたレポートはありません。
@else
@foreach($reports as $report) @endforeach
期間 フォーマット 作成日時 ファイルサイズ アクション
{{ $report['period'] }} {{ strtoupper($report['format']) }} {{ date('Y/m/d H:i:s', $report['created_at']) }} {{ number_format($report['size'] / 1024, 1) }} KB
@endif
@endsection @section('scripts') @endsection