create report controller

This commit is contained in:
2025-03-02 14:38:59 +03:30
parent b31ea8bba2
commit 945fa0792b
4 changed files with 81 additions and 61 deletions

View File

@@ -0,0 +1,20 @@
<?php
namespace App\Http\Controllers\V3\Dashboard\Reports;
use App\Http\Controllers\Controller;
use App\Services\Cartables\SafetyAndPrivacyTableService;
use Illuminate\Http\Request;
class SafetyAndPrivacyReportController extends Controller
{
public function countryActivity(Request $request, SafetyAndPrivacyTableService $safetyAndPrivacyTableService)
{
}
public function provinceActivity(Request $request, SafetyAndPrivacyTableService $safetyAndPrivacyTableService)
{
}
}