{{ __('Galeri Nota') }}

@if($notas->isEmpty())

Belum ada nota

Nota yang Anda upload saat mencatat pengeluaran akan muncul di sini.

@else
@foreach($notas as $nota)
@php $extension = pathinfo(storage_path('app/public/'.$nota->foto_nota), PATHINFO_EXTENSION); @endphp @if(in_array(strtolower($extension), ['jpg', 'jpeg', 'png', 'gif'])) Nota @else
{{ $extension }} File
@endif
{{ \Carbon\Carbon::parse($nota->tanggal)->format('d M Y') }}

{{ $nota->nama_barang }}

{{ $nota->keterangan ?? '-' }}
Rp {{ number_format($nota->jumlah * $nota->harga, 0, ',', '.') }}
@endforeach
@endif