@extends('admin.layouts.master') @section('content')
 
 
 
{{--
--}}

{{ trans('app.products') }}

@include('admin.partials.reports.timeframe')
@if (count($data) > 0) @foreach ($data as $key => $item) @endforeach @endif
{{ trans('app.product') }} {{ trans('app.model_number') }} {{ trans('app.gtin') }} {{ trans('app.quantity') }} {{ trans('app.unique_purchase') }} {{ trans('app.average_price') }} {{ trans('app.revenue') }}
{{ $item->name }} {{ $item->model_number }} {{ $item->gtin_type }} {{ $item->gtin }} {{ $item->quantity }} {{ $item->uniquePurchase }} {{ get_formated_currency($item->avgPrice, 2, config('system_settings.currency.id')) }} {{ get_formated_currency($item->totalSale, 2, config('system_settings.currency.id')) }}
@endsection @section('page-script') @include('plugins.report-products') @endsection