Skip to content

Commit

Permalink
MVC testing
Browse files Browse the repository at this point in the history
  • Loading branch information
yelypk committed Aug 18, 2024
1 parent b8f1c88 commit c090d5c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions config/database.php
Original file line number Diff line number Diff line change
Expand Up @@ -46,14 +46,14 @@
'mysql' => [
'driver' => 'mysql',
'url' => env('DATABASE_URL'),
'host' => env('DB_HOST', '127.0.0.1'),
'host' => env('DB_HOST', 'localhost'),
'port' => env('DB_PORT', '3306'),
'database' => env('DB_DATABASE', 'dbshop'),
'username' => env('DB_USERNAME', 'root'),
'password' => env('DB_PASSWORD', 'Gfhfkkfrc89'),
'unix_socket' => env('DB_SOCKET', ''),
'charset' => 'utf8mb4',
'collation' => 'utf8mb4_unicode_ci',
'collation' => 'utf8mb4_0900_ai_ci',
'prefix' => '',
'prefix_indexes' => true,
'strict' => true,
Expand Down

0 comments on commit c090d5c

Please sign in to comment.