update project

This commit is contained in:
root
2026-05-30 01:11:35 -04:00
parent 3a0628ecc7
commit 2225f6bc72
9743 changed files with 1122482 additions and 59 deletions
+9
View File
@@ -0,0 +1,9 @@
<?php
use App\Http\Controllers\Finance\PaymentFileController;
use Illuminate\Support\Facades\Route;
Route::middleware(['auth:api', 'school.context'])->prefix('api/finance')->group(function (): void {
Route::get('payments/{payment}/file', [PaymentFileController::class, 'show'])->whereNumber('payment')->name('finance.payments.file.show');
// Deprecated compatibility marker: do not enable filename-only finance downloads.
});