feat: implement proposal management system including database schema, Filament resources, and client-facing preview views
This commit is contained in:
@@ -144,6 +144,10 @@ Route::get('/logo-preview', function (Illuminate\Http\Request $request) {
|
||||
// Sitemap
|
||||
Route::get('/sitemap.xml', [\App\Http\Controllers\SitemapController::class, 'index'])->name('sitemap');
|
||||
|
||||
// Proposals Public Interface
|
||||
Route::get('/teklif/{slug}', [\App\Http\Controllers\ProposalController::class, 'show'])->name('proposals.show');
|
||||
Route::post('/teklif/{slug}/action', [\App\Http\Controllers\ProposalController::class, 'action'])->name('proposals.action');
|
||||
|
||||
// Nested Pages (Parent/Child)
|
||||
Route::get('/{parentSlug}/{slug}', [PageController::class, 'showNested'])->name('page.show_nested');
|
||||
|
||||
|
||||
Reference in New Issue
Block a user