2023-06-11 12:14:03 +00:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace Modules\Report;
|
|
|
|
|
|
|
|
use Modules\Product\Entities\Product;
|
|
|
|
|
|
|
|
class ProductsViewReport extends Report
|
|
|
|
{
|
|
|
|
protected $filters = [];
|
|
|
|
|
2023-12-03 14:07:47 +00:00
|
|
|
|
2023-06-11 12:14:03 +00:00
|
|
|
protected function view()
|
|
|
|
{
|
|
|
|
return 'report::admin.reports.products_view_report.index';
|
|
|
|
}
|
|
|
|
|
2023-12-03 14:07:47 +00:00
|
|
|
|
2023-06-11 12:14:03 +00:00
|
|
|
protected function query()
|
|
|
|
{
|
|
|
|
return Product::withoutGlobalScope('active')
|
|
|
|
->select('id', 'viewed')
|
|
|
|
->when(request()->has('product'), function ($query) {
|
|
|
|
$query->whereTranslationLike('name', request('product') . '%');
|
|
|
|
})
|
|
|
|
->when(request()->has('sku'), function ($query) {
|
|
|
|
$query->where('sku', request('sku'));
|
|
|
|
})
|
|
|
|
->orderByDesc('viewed');
|
|
|
|
}
|
|
|
|
}
|