Source view

This commit is contained in:
2020-08-15 02:24:46 +05:00
parent 084f275b89
commit 35e96947d9
3 changed files with 84 additions and 0 deletions

View File

@@ -5,6 +5,7 @@ use Illuminate\Support\Facades\Route;
use App\Article;
use App\Http\Controllers\ArticlesController;
use App\Http\Controllers\TopicsController;
use App\Http\Controllers\SourcesController;
/*
|--------------------------------------------------------------------------
@@ -23,6 +24,7 @@ Route::get('/', function(){
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');
Route::get('/ogimage', function(Request $request) {