Files
opensem/app/Repositories/Shop/CustomerStats.php
2022-08-19 22:04:44 +02:00

13 lines
189 B
PHP

<?php
namespace App\Repositories\Shop;
use Spatie\Stats\BaseStats;
class CustomerStats extends BaseStats {}
{
public function getName() : string{
return 'customers';
}
}