@extends('layouts.admin.master') @section('title', 'Receive Lists') @section('content')
Receive Lists
@if (count($stock_receive_list) != 0) @php $count = 1; @endphp @foreach ($stock_receive_list as $detail) @php $count++; @endphp @endforeach @endif
No Receive Date Receive Voucher Total Amount Remark Edit Delete
{{ $count }} {{ date('d-m-Y', strtotime($detail->receive_date)) }} {{ $detail->receive_voucher_number }} {{ number_format($detail->total_amount) }} {{ $detail->remark }}
{{-- Voucher Delete Modal --}} {{-- End Voucher Delete --}}
@endsection