@extends('admin.template') @section('title', 'Data Sampah Bulanan') @section('content')

Data Sampah Bulanan

Daftar data sampah per bulan

Tambah
@forelse ($sampah as $item) @empty @endforelse
Tahun Bulan Total Sampah Total Kelola Total Daur Ulang Sisa Sampah Aksi
{{ $item->tahun }} {{ \Carbon\Carbon::create()->month($item->bulan)->translatedFormat('F') }} {{ number_format($item->total_sampah, 2, ',', '.') }} Ton {{ number_format($item->total_kelola, 2, ',', '.') }} Ton {{ number_format($item->total_daur_ulang, 2, ',', '.') }} Ton {{ number_format($item->sisa_sampah, 2, ',', '.') }} Ton
@csrf @method('DELETE')
Data sampah belum tersedia
@if (session('success')) @endif @endsection