@forelse($purchase as $key => $item) @empty @endforelse
# {{ __('Action') }} {{ __('Store') }} @if($sortField === 'whs_name') @if($sortDirection === 'asc') @else @endif @endif {{ __('Date') }} @if($sortField === 'date') @if($sortDirection === 'asc') @else @endif @endif {{ __('Supplier') }} @if($sortField === 'name') @if($sortDirection === 'asc') @else @endif @endif {{ __('Remark') }} {{ __('Qty') }} @if($sortField === 'qty') @if($sortDirection === 'asc') @else @endif @endif {{ __('Total') }} @if($sortField === 'total') @if($sortDirection === 'asc') @else @endif @endif
{{ $purchase->firstItem() + $key }} {{ $item->whs_name ?? '-' }} {{ \Carbon\Carbon::parse($item->date)->format('d F Y') }} {{ $item->name }} {{ $item->remark }} {{ $item->qty }} {{ 'Rp. ' . number_format($item->total, 0, ',', '.') }}
No records found
{{ $purchase->links() }}
# {{ __('Total Qty') }}
Total {{ number_format($totalSumQty, 0, ',', ',') }}
@admin @endadmin
@livewireScripts