@extends('layout.app') @section('title', 'Stock Summary Report') @push('header_script') @endpush @section('content')
@if($level == 1) Stock Groups Valuation @elseif($level == 2 && $category) Items in: {{ $category->category_name }} @elseif($level == 3 && $product) Item Ledger: {{ $product->product_name }} @if($product->brand) {{ $product->brand->brand_name }} @endif @endif
{{-- Level 1 table --}} @if($level == 1)
S.no. Stock Group Total Qty Avg Rate Total Value
{{-- Level 2 table --}} @elseif($level == 2)
S.no. Item Name Brand Qty Unit Avg Rate Total Value
{{-- Level 3 table --}} @elseif($level == 3)
S.no. Voucher Type Manufacturer Brand Qty Unit Rate Amount Bal. Qty Unit Bal. Rate Bal. Amount
@endif
@endsection @push('footer_script') @if($level == 1) @elseif($level == 2) @elseif($level == 3) @endif @endpush