Added license management module

This commit is contained in:
2026-05-25 22:45:23 +02:00
parent 93b7be7e2c
commit df24d48038
16 changed files with 861 additions and 9 deletions
+5
View File
@@ -11,6 +11,7 @@
use App\Http\Controllers\ProductController;
use App\Http\Controllers\TimesheetController;
use App\Http\Controllers\PipelineController;
use App\Http\Controllers\LicenseController;
Route::middleware('auth')->group(function () {
@@ -49,6 +50,10 @@
Route::get('invoice/{id}/pdf', [InvoiceController::class, 'exportPdf'])->name('invoiceExportPdf');
Route::get('invoice/{id}/xml', [InvoiceController::class, 'exportXml'])->name('invoiceExportXml');
// Licenses
Route::get('licenses', [LicenseController::class, 'show'])->name('licenses');
Route::get('licenses/download/{id}', [LicenseController::class, 'download'])->name('downloadLicense');
// Products
Route::get('products', [ProductController::class, 'show'])->name('products');