@extends('layouts.app') @section('title', 'Dashboard - OVMSA Elements') @section('content')

OVMSA Management System

Oil & Gas Vessel Management Safety Audit

Welcome back,

{{ auth()->user()->name }}

System Elements

13

elements

Complete OVMSA framework

Total Records

{{ collect($elementCounts)->sum('count') }}

records

Across all elements

Active Elements

{{ collect($elementCounts)->where('count', '>', 0)->count() }}

of 13
@php $activePercentage = round((collect($elementCounts)->where('count', '>', 0)->count() / 13) * 100); @endphp
{{ $activePercentage }}%
Pending Setup

{{ collect($elementCounts)->where('count', '=', 0)->count() }}

elements

Require initial configuration

System Compliance

{{ $activePercentage }}%

Active User

{{ auth()->user()->name }}

Last Updated

{{ now()->format('M d, Y') }}

System Reports

Comprehensive analysis and insights across all OVMSA elements

Compliance Overview

System-wide compliance status

Detailed compliance analysis for all elements with status breakdown and recommendations

Activity & Performance

Performance metrics and trends

Activity tracking, performance insights, and top performing elements analysis

Executive Summary

High-level management overview

Strategic overview with key findings and recommendations for senior management

OVMSA Elements Overview

Select an element to view and manage its documentation and compliance records

@foreach($elementCounts as $element)
{{ $element['id'] }}

{{ $element['name'] }}

Records
{{ $element['count'] }} @if($element['count'] > 0) Active @else Pending @endif
@if($element['count'] > 0)
Documentation Status Active
@endif
View Details
@endforeach

ISO Compliant

Meets international safety standards

Audit Ready

Complete documentation and traceability

Real-time Updates

Live monitoring and instant notifications

Oil & Gas Vessel Management Safety Audit (OVMSA) - 13 Elements System

© {{ now()->year }} BSS OVMSA. All rights reserved. | Powered by Laravel {{ app()->version() }}

@endsection