11/5/2022

This commit is contained in:
Nguyễn Tiến Dũng
2022-05-11 21:09:39 +07:00
parent 96e0513959
commit 3d31201a05
117 changed files with 38921 additions and 595 deletions

View File

@@ -1,6 +1,7 @@
<?php
use Illuminate\Support\Facades\Route;
use App\Models\Setting;
/*
|--------------------------------------------------------------------------
@@ -14,5 +15,6 @@ use Illuminate\Support\Facades\Route;
*/
Route::get('/', function () {
return view('welcome');
$setting = Setting::first();
return view('welcome', compact('setting'));
});