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