@extends('layouts.admin.admin_layout') @section('title', trans('applang.warehouses')) @section('vendor-css') @endsection @section('page-css') @endsection @section('content')
@foreach($warehouseTotals as $index => $total) @if($total->total_quantity_purchased > 0.00 || $total->total_quantity_sold > 0.00) @foreach($total->product as $product) @endforeach @endif @endforeach
# {{trans('applang.name')}} {{trans('applang.barcode')}} {{trans('applang.quantity')}} {{trans('applang.current_selling_price')}} {{trans('applang.average_purchase_price')}} {{trans('applang.expected_total_selling_price')}} {{trans('applang.total_purchase_price')}} {{trans('applang.expected_profit')}}
{{$index+1}} {{$product->name}} {{$product->sku}} {{$total->total_quantity_remain}} {{$product->sell_price}} {{$total->weighted_average_cost}} {{$total->total_sales_value_of_remain}} {{$total->total_remain_cost}} {{$total->expected_profit_of_remain}}
{{trans('applang.total')}} {{$warehouseTotalsSellPrice}} {{$warehouseTotalsPurchasePrice}} {{$warehouseTotalsExpectedProfit}}
@include('erp.inventory.warehouses.modals') @endsection @section('page-vendor-js') @endsection @section('page-js') @endsection