@php use App\Models\Cases; @endphp
@inject('splunk_searches', '\App\Models\SplunkSearches')
@include('flash::message')
@php
$dashboard = 'MSS-INT-V';
$wCampaignsTested = $splunk_searches::getIdByName('Campaigns Tested', $dashboard);
$wFullyBlocked = $splunk_searches::getIdByName('Fully Blocked', $dashboard);
$wNotBlocked = $splunk_searches::getIdByName('Not Fully Blocked', $dashboard);
$wTopGap = $splunk_searches::getIdByName('Top Gap', $dashboard);
$wTable = $splunk_searches::getIdByName('Immediate Threat Intelligence Assessment', $dashboard);
$wCaseCandidates = $splunk_searches::getIdByName('Case Candidates', $dashboard);
$wCritical = $splunk_searches::getIdByName('Case Severity Critical', $dashboard);
$wHigh = $splunk_searches::getIdByName('Case Severity High', $dashboard);
$wMedium = $splunk_searches::getIdByName('Case Severity Medium', $dashboard);
$wLow = $splunk_searches::getIdByName('Case Severity Low', $dashboard);
@endphp
{{ $splunk_searches::getNameForId(675) }}
{!! $splunk_searches::getCodeArray([675],$from,$to) !!}
{{ $splunk_searches::getNameForId(672) }}
{!! $splunk_searches::getCodeArray([672],$from,$to) !!}
{{ $splunk_searches::getNameForId(673) }}
{!! $splunk_searches::getCodeArray([673],$from,$to) !!}
{{ $splunk_searches::getNameForId(674) }}
{!! $splunk_searches::getCodeArray([674],$from,$to) !!}
{{ $splunk_searches::getNameForId(468) }}
{!! $splunk_searches::getCodeArray([468],$from,$to) !!}
@include('cases.table')
@include('cases.js.case-table-script')
{!! Form::open(['url' => ['MSS-INT'], 'method' => 'get','autocomplete'=>'off']) !!}
@include('news.filter')
{!! Form::close() !!}
@include('news.table')
@if($news->total() >= $news->perPage())
{{ $news->links() }}
@endif
{{-- ===== TAB: MSS-INT-V REVAMP ===== --}}
{{-- ROW 1: 4 BASE METRICS --}}
@if($wCampaignsTested)
{!! $splunk_searches::getCodeArray([$wCampaignsTested], $from, $to) !!}
@endif
@if($wNotBlocked)
{!! $splunk_searches::getCodeArray([$wNotBlocked], $from, $to) !!}
@endif
@if($wFullyBlocked)
{!! $splunk_searches::getCodeArray([$wFullyBlocked], $from, $to) !!}
@endif
@if($wTopGap)
{!! $splunk_searches::getCodeArray([$wTopGap], $from, $to) !!}
@endif
{{-- ROW 2: SEVERITY KPIs --}}
@if($wCritical)
{!! $splunk_searches::getCodeArray([$wCritical], $from, $to) !!}
@endif
@if($wHigh)
{!! $splunk_searches::getCodeArray([$wHigh], $from, $to) !!}
@endif
@if($wMedium)
{!! $splunk_searches::getCodeArray([$wMedium], $from, $to) !!}
@endif
@if($wLow)
{!! $splunk_searches::getCodeArray([$wLow], $from, $to) !!}
@endif
{{-- ROW 3: MAIN TABLE --}}
@if($wTable)
Immediate Threat Intelligence Assessment
{!! $splunk_searches::getCodeArray([$wTable], $from, $to) !!}
@endif
{{-- ROW 4: CASE CANDIDATES TABLE --}}
@if($wCaseCandidates)
{!! $splunk_searches::getCodeArray([$wCaseCandidates], $from, $to) !!}
@endif
{{-- /mss-int-v --}}
@include('dashboards.services.mss_int_premium')
{{-- /tab-content --}}
@include('widgets.bottom_time_information')