@extends('layouts.admin.master') @section('title', 'Stock-In Reports') @section('content')
Stock-In Reports
{{-- --}}
{{--
--}}
@php $totalAmount = 0; @endphp @if (count($stock_receive_list) != 0) @php $count = 1; @endphp @foreach ($stock_receive_list as $stock_receive) @php $count++; $totalAmount += $stock_receive['total_amount']; @endphp @endforeach @endif
No Receive Date Receive Voucher Total Amount Remark
{{ $count }} {{ date('d-M-y', strtotime($stock_receive['receive_date'])) }} {{ $stock_receive['receive_voucher_number'] }} {{ number_format($stock_receive['total_amount']) }} {{ $stock_receive['remark'] }}
{{-- --}} {{-- --}} {{-- --}} {{-- --}} @endsection