Map of product count

This commit is contained in:
2024-03-25 19:20:28 +01:00
parent 21865a35d9
commit 4503b7c33f
7 changed files with 73 additions and 10 deletions

View File

@@ -0,0 +1,13 @@
<?php
namespace App\Http\Controllers;
use App\Models\ProductsCount;
use Illuminate\Http\Request;
class ProductsCountController extends Controller
{
public function index()
{
return ProductsCount::all();
}
}