@extends('layouts.adminapp') @section('title') {{ __('lng.ProductReport') }} - {{ __('lng.Print') }} @endsection @section('active_report', 'active') @section('open_report', 'open') @section('open_products_report', 'open') @section('active_products_report', 'active') @section('active_product_report', 'active') @section('content')

{{ __('lng.Print') }}

@include('PrintHeader.header')

{{__('lng.ProductReport')}}

@php $si=0; @endphp @foreach ($Products as $Product) @endforeach
{{ __('lng.SiNo') }} {{ __('lng.ProductName') }} {{ __('lng.ProductGroup') }} {{ __('lng.ProductCode') }} {{ __('lng.Cost') }} {{ __('lng.Price') }} {{ __('lng.Narration') }}
{{ ++$si }} {{ $Product->product_name }} {{ $Product->ProductGroup->name ?? '' }} {{ $Product->product_code }} @currency($Product->product_cost) @currency($Product->price) {{ $Product->narration }}
{{ __('lng.Back') }}
@endsection