Preview and landing

This commit is contained in:
2020-08-24 10:11:55 +05:00
parent 28059d7e94
commit a6abde8547
13 changed files with 90422 additions and 10 deletions

View File

@@ -25,6 +25,10 @@ Route::get('/', function(){
return view('home');
});
Route::get('/preview', function(){
return view('pages.preview');
});
Route::get('/article/{article:id}', [ArticlesController::class,'show'])->name('articles.show');
Route::get('/topic/{topic:slug}', [TopicsController::class,'show'])->name('topics.show');
Route::get('/source/{source:slug}', [SourcesController::class,'show'])->name('sources.show');