{{-- resources/views/accounting/coffee_processing/index.blade.php --}} @extends('admin.admin_dashboard') @section('admin')
@can('coffee_processing.view')
@foreach($processings as $key => $p) @endforeach
# Process Type Qty (kg) Date Action
Total Quantity {{ number_format($totalQuantity, 2) }}
{{ $key + 1 }} {{ $p->process_type }} {{ ucfirst($p->process_type) }} {{ number_format($p->quantity, 2) }} {{ \Carbon\Carbon::parse($p->processed_at)->format('Y-m-d') }}
@endcan
{{-- SweetAlert2 for delete confirmation --}} @endsection