@extends('backend.layouts.app') @section('backend_title', 'Admin Brand List') @section('backend_style') @endsection @section('backend_content')
All Stock Report
Stock Report Download
@forelse ($products as $index=> $item) @empty @endforelse
Sl No. P.code Thum Image Product name Current Qty Sales Qty Pandding Qty P price C.P price S.P price P.P price W price C.W price S.W price P.W price R price C.R price S.R price P.R price Status Action
{{ $index + 1 }}

{{ $item->product_code }}

{{ \Illuminate\Support\Str::limit($item->bn_name != null ? $item->bn_name : $item->en_name, 40, '...') }}

{{ $item->qty }}

{{ $item['salesDetails']['total_quantity'] }}

{{ $item['panddingDetails']['total_quantity'] }}

{{ $item->purchase_price }}

{{ $item->qty * $item->purchase_price }}

{{ $item['salesDetails']['total_quantity'] * $item->purchase_price }}

{{ $item['panddingDetails']['total_quantity'] * $item->purchase_price }}

{{ $item->wholesale_price }}

{{ $item->qty * $item->wholesale_price }}

{{ $item['salesDetails']['total_quantity'] * $item->wholesale_price }}

{{ $item['panddingDetails']['total_quantity'] * $item->wholesale_price }}

{{ $item->retail_price }}

{{ $item->qty * $item->retail_price }}

{{ $item['salesDetails']['total_quantity'] * $item->retail_price }}

{{ $item['panddingDetails']['total_quantity'] * $item->retail_price }}

@if ($item->status == 1 && $item->qty > 0) Active @else Inactive @endif
Data Not Found!!
@endsection