@extends('layouts.index') @section('header')
{{$title}}
@endsection @push('styles') @endpush @section('content')

{{$title}}

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