No. |
Date |
Remarks |
@if ($_SESSION['warehouse'] == 'beans')
Bean Type |
@else
Product Type |
@endif
Quantity(IN) |
Quantity(OUT) |
Balance |
@if ($_SESSION['warehouse'] == 'beans')
@foreach ($factory_stock_beans as $factory_stock_bean)
{{ $count++ }}. |
{{ Carbon\Carbon::parse($factory_stock_bean->transaction_date)->format('Y-m-d') }}. |
{{ str_replace('_', ' ', strtoupper($factory_stock_bean->remarks)) }} |
{{ ltrim(optional($factory_stock_bean->crop)->name, 'Ghana') }} |
{{ $factory_stock_bean->credit_bags }} |
{{ $factory_stock_bean->debit_bags }} |
{{ $factory_stock_bean->balance_bags }} |
@endforeach
Showing {{ $factory_stock_beans->firstItem() }} to {{ $factory_stock_beans->lastItem() }}
of total {{ $factory_stock_beans->total() }} entries
{{ $factory_stock_beans->links() }}
@else
@foreach ($factory_stock_products as $factory_stock_product)
{{ $count++ }}. |
{{ Carbon\Carbon::parse($factory_stock_product->transaction_date)->format('Y-m-d') }}. |
{{ str_replace('_', ' ', strtoupper($factory_stock_product->remarks)) }} |
{{ optional($factory_stock_product->type_of_product)->type_of_product }} |
{{ $factory_stock_product->credit_bags }} |
{{ $factory_stock_product->debit_bags }} |
{{ $factory_stock_product->balance_bags }} |
@endforeach
Showing {{ $factory_stock_products->firstItem() }} to {{ $factory_stock_products->lastItem() }}
of total {{ $factory_stock_products->total() }} entries
{{ $factory_stock_products->links() }}
@endif