How to get database name in Laravel 9 ?
Today we are going to learn about "how to get the database name in Laravel 9
". Here we have different ways to get the name of the database which is connected to the Laravel application.
Simply you can visit the .env file to see the database name which is at the root of your project directory and you can also write some code in the controller or view file to get the database name in Laravel.
Here we can use below code in controller as well as view file to get the database name in Laravel.
env('DB_DATABASE');
-
Get the database name using env helper function
You can use the env helper function in controller or blade file to get the database name in Laravel.
Here you can place below code in your view file to get the connected database name.
{{ env('DB_DATABASE') }}
You can also use the env helper function in your controller’s method. You can use the echo function with it to display the database name on your computer screen.
//Controller's method $databaseName = env('DB_DATABASE');
-
Get the database name using config helper function in Laravel
You can use the config helper function to get the database name in Laravel. Here we have two different ways to get the database name using the config helper function.
You can change the connection name from mysql to sqlite or pgsql as per your requirement. You can use the config helper function in your controller’s method or view file.
Place code in Controller’s method (app\Http\Controllers<HomeController>.php)
$databaseName = config('database.connections.mysql.database'); $databaseName = Config::get('database.connections.'.Config::get('database.default'));
Place code in view file (resources\views<welcome>.blade.php)
{{ config('database.connections.mysql.database') }}
-
Get the database name using DB facade in Laravel
You can use the DB facade with connection() and getDatabaseName() method to get the database name in Laravel. First, you have to import the DB facade (use Illuminate\Support\Facades\DB;) at the top of the controller file to use it in your controller’s method.
use Illuminate\Support\Facades\DB;
Place code in controller’s method (app\Http\Controllers\HomeController.php)
$databaseName = \DB::connection()->getDatabaseName();
Place code in view file (resources\views\welcome.blade.php)
{{ $databaseName = \DB::connection()->getDatabaseName() }}
If you like what you are reading, please consider buying us a coffee ( or 2 ) as a token of appreciation.
Don't forget to share this article! Help us spread the word by clicking the share button below.
We appreciate your support and are committed to providing you valuable and informative content.
We are thankful for your never ending support.
Random Code Snippet Queries: Laravel
- Fatal error: Composer detected issues in your platform: Your Composer dependencies require a PHP version ">= 8.0.0"
- Laravel 5.4 save data to database
- Eager loading dynamically in laravel
- How to create belongstomany relation using custom name on custom pivot table
- How to display 1 day ago in comments in laravel view
- Get id of last inserted record in laravel
- How to create and run user seeder in laravel
- Insert dummy data in users table Laravel
- Use of undefined constant laravel
- How to create projects method with belongstomany relationship in user model
- Connection could not be established with host smtp.gmail.com :stream_socket_client(): unable to connect to tcp://smtp.gmail.com:587 (Connection refused)"
- Call to undefined function Illuminate\Encryption\openssl_cipher_iv_length()
- Get laravel version
- How to get specific columns using Laravel eloquent methods
- Route [password.request] not defined
- Delete all related comments on deleting a post in Laravel
- How to send email in Laravel 11
- How to get data from two tables in laravel
- Global scope in Laravel with example
- How to create laravel project using composer
- Method Illuminate\Database\Eloquent\Collection::appends does not exist
- How to generate .env file for laravel?
- How to get images from AWS s3 and display in Laravel blade
- Get last week data in Laravel
- Automatically remove records using Prunable trait in Laravel