@extends('layouts.index')
@section('header')
@endsection
@push('styles')
@endpush
@section('content')
Area Defect |
Jumlah Defect |
% Defect |
@php
$totalDefect = \App\Models\DetailTransaksi::whereNotNull('keluhan')->count();
@endphp
@foreach ($datas as $key => $data)
{{ $key }} |
{{ $data }} |
{{ \Helper::hitungPersen($data, $totalDefect) }} |
@endforeach
Total |
{{ $totalDefect }} |
@push('scripts')
@endpush
@endsection