@extends('layout.layout') @section('title') Dashboard @endsection @section('css') @endsection @section('content') @component('components.breadcrumb') @slot('title') Stock Valuation Report @endslot @slot('li_1')
BACK
@endslot @endcomponent
Warehouse:
{{ $warehouse }}
Printed Date:
{{ $date->format('d/m/Y') }}
PDF
@if (count($typeArray) > 0) @foreach($typeArray as $typeA) @foreach($warehsTots as $warehs) @if($warehs->type_id == $typeA->type_id) @endif @endforeach @endforeach @foreach($warehouseTots as $warehs) @endforeach @endif
Stock Type: {{ $typeA->description }}
Cost Price
Sales Price
Subtotal for {{ $typeA->description }}
{{ number_format($typeA->cost_price, 2) }}
{{ number_format($typeA->sales_price, 2) }}
Warehouse:{{ $warehs->name }}
{{ number_format($warehs->cost_price, 2) }}
{{ number_format($warehs->sales_price, 2) }}
--------------------------------------------------------------------------
Grand Total
{{ number_format($grand_cost, 2) }}
{{ number_format($grand_sales, 2) }}
Warehouse: {{ $warehs->name }}
{{ number_format($warehs->cost_price, 2) }}
{{ number_format($warehs->sales_price, 2) }}
@endsection @push('plugin-scripts') @section('script')
@endsection @endpush