Invoice Frontend

This commit is contained in:
Utkarsh Khedkar
2025-11-18 14:35:58 +05:30
parent 56a17cf1e0
commit 837f4fe566
13 changed files with 1695 additions and 303 deletions

View File

@@ -113,6 +113,10 @@ Route::prefix('admin')->middleware('auth:admin')->group(function () {
Route::post('/invoices/{id}/update', [AdminInvoiceController::class, 'update'])
->name('admin.invoices.update');
//Add New Invoice
Route::get('/admin/invoices/create', [InvoiceController::class, 'create'])->name('admin.invoices.create');
});