diff --git a/.env.example b/.env.example index 06bdfe8..e02dee4 100644 --- a/.env.example +++ b/.env.example @@ -19,12 +19,12 @@ LOG_STACK=single LOG_DEPRECATIONS_CHANNEL=null LOG_LEVEL=debug -DB_CONNECTION=sqlite -# DB_HOST=127.0.0.1 -# DB_PORT=3306 -# DB_DATABASE=laravel -# DB_USERNAME=root -# DB_PASSWORD= +DB_CONNECTION=pgsql + DB_HOST=127.0.0.1 + DB_PORT=5432 + DB_DATABASE=laravel + DB_USERNAME=root + DB_PASSWORD= SESSION_DRIVER=database SESSION_LIFETIME=120 diff --git a/resources/js/Pages/Welcome.vue b/resources/js/Pages/Welcome.vue index 1b6c69b..136c455 100644 --- a/resources/js/Pages/Welcome.vue +++ b/resources/js/Pages/Welcome.vue @@ -81,266 +81,11 @@ function handleImageError() {
-
- -
- Laravel documentation screenshot - -
-
-
-
-
- - - - -
- -
-

Documentation

- -

- Laravel has wonderful documentation covering every aspect of the framework. - Whether you are a newcomer or have prior experience with Laravel, we - recommend reading our documentation from beginning to end. -

-
-
- - - - -
-
- - -
- - - - - -
- -
-

Laracasts

- -

- Laracasts offers thousands of video tutorials on Laravel, PHP, and JavaScript - development. Check them out, see for yourself, and massively level up your - development skills in the process. -

-
- - - - -
- - -
- - - - - - - -
- -
-

Laravel News

- -

- Laravel News is a community driven portal and newsletter aggregating all of the - latest and most important news in the Laravel ecosystem, including new package - releases and tutorials. -

-
- - - - -
- -
-
- - - - - -
- -
-

Vibrant Ecosystem

- -

- Laravel's robust library of first-party tools and libraries, such as - Forge, - Vapor, - Nova, - Envoyer, and - Herd - help you take your projects to the next level. Pair them with powerful open source - libraries like - Cashier, - Dusk, - Echo, - Horizon, - Sanctum, - Telescope, and more. -

-
-
-
diff --git a/routes/web.php b/routes/web.php index 29d16eb..8b47726 100644 --- a/routes/web.php +++ b/routes/web.php @@ -11,8 +11,6 @@ Route::get('/', function () { return Inertia::render('Welcome', [ 'canLogin' => Route::has('login'), 'canRegister' => Route::has('register'), - 'laravelVersion' => Application::VERSION, - 'phpVersion' => PHP_VERSION, ]); });