@extends('layouts.app') @section('content')

Compliance Progress

{{ $completedForms ?? 0 }} of {{ $totalForms ?? 0 }} forms submitted
@php $percentage = $totalForms > 0 ? round(($completedForms / $totalForms) * 100, 1) : 0; if ($percentage < 50) $barColor = 'bg-red-500'; elseif ($percentage < 100) $barColor = 'bg-yellow-400'; else $barColor = 'bg-green-500'; @endphp

{{ $percentage }}% compliance achieved

Borang

Senarai borang koperasi anda. Sila lengkapkan setiap borang di bawah.

@foreach ($borangs as $borang) @include('borang.card_layout', ['borang' => $borang]) @endforeach
@endsection