@extends('layouts.app') @section('title', __('Draft reports')) @push('stylesheets') @include('reports.partials.mec-listing-table-styles') @include('partials.index-datatable-styles') @include('partials.filter-card-styles') @endpush @section('contents')

{{ __('Draft reports') }}

@include('reports.partials.mec-listing-scheme-name-toggle')
@include('reports.partials.new-monitoring-report-button')

{{ __('Saved report drafts for your account. Click a row to continue editing or remove a draft.') }}

@include('reports.partials.drafts-listing-table', [ 'tableId' => 'tblReportsDrafts', 'draftRows' => $draftRows, ])
@include('partials.listing-pagination', [ 'paginator' => $paginator ?? null, 'perPage' => $perPage ?? 25, 'baseUrl' => route('reports.drafts.index'), ])
@endsection @push('scripts') @include('partials.index-datatable-scripts') @include('reports.partials.mec-listing-scheme-name-toggle-scripts') @endpush