Форматирование

This commit is contained in:
brusnitsyn
2026-04-24 16:46:10 +09:00
parent fd0e6ee817
commit 63daa62888
87 changed files with 1380 additions and 791 deletions

View File

@@ -3,7 +3,6 @@
namespace App\Http\Controllers;
use App\Services\PatientMigrationService;
use Illuminate\Http\Request;
use Illuminate\Support\Carbon;
use Inertia\Inertia;
@@ -14,12 +13,13 @@ class TestController extends Controller
$startAt = Carbon::parse('2026-01-01T00:00:00')->format('Y-m-d H:i:s');
$endAt = Carbon::parse('2026-03-31T23:59:00')->format('Y-m-d H:i:s');
$cacheKey = "branch_current_2";
\Cache::tags(["migrations_in_branch_outcome"])->flush();
$cacheKey = 'branch_current_2';
\Cache::tags(['migrations_in_branch_outcome'])->flush();
$data = $migrationService->getMigrationsInBranchOutcome(2, $startAt, $endAt);
return Inertia::render('TestQuery', [
'data' => $data
'data' => $data,
]);
}