Two month of work

This commit is contained in:
2026-02-17 10:35:03 +01:00
parent 0ffbeeedff
commit d9fd3d1ccb
158 changed files with 5637 additions and 1512 deletions
+6 -10
View File
@@ -9,23 +9,20 @@
use App\Http\Controllers\InvoiceController;
use App\Http\Controllers\CustomerController;
use App\Http\Controllers\ProductController;
use App\Models\Setting;
use App\Http\Controllers\TimesheetController;
use App\Http\Controllers\PipelineController;
Route::middleware('auth')->group(function () {
// Dashboard
Route::get('/', function () {
return Inertia::render('Dashboard');
})->name('home');
Route::redirect('/', '/dashboard');
Route::get('dashboard', function () {
return Inertia::render('Dashboard');
})->name('dashboard');
// CRM
Route::get('crm', function () {
return Inertia::render('CRM');
})->name('crm');
Route::get('pipeline', [PipelineController::class, 'show'])->name('pipeline');
// Offers
Route::get('offers', function () {
@@ -55,9 +52,8 @@
// Products
Route::get('products', [ProductController::class, 'show'])->name('products');
Route::get('timesheets', function () {
return Inertia::render('Timesheets');
})->name('timesheets');
// Timesheets
Route::get('timesheets', [TimesheetController::class, 'show'])->name('timesheets');
// Procedural Documentation
Route::get('proceduralDocumentation', function () {