Two month of work
This commit is contained in:
+6
-10
@@ -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 () {
|
||||
|
||||
Reference in New Issue
Block a user