How to Get Database Name in Laravel?
Hey Guys,
In this article, we will cover how to get database name in laravel. we will help you to give an example of laravel get database name. you can understand a concept of get database name in laravel. you will learn how to get eloquent database name in laravel.
You can use this example with laravel 6, laravel 7, laravel 8, laravel 9, laravel 10 and laravel 11 versions.
In this example, i will show you how to get database name in laravel. we will use getDatabaseName() function of DB class. so, let's see the below example.
So, let's see the below code:
Example:
app/Http/Controllers/DemoController.php
<?php
namespace App\Http\Controllers;
use Illuminate\Http\Request;
use DB;
class DemoController extends Controller
{
/**
* Write code on Method
*
* @return response()
*/
public function index(Request $request)
{
$database = DB::connection()->getDatabaseName();
dd("Your database is ".$database.".");
}
}
Output:
database is "my_database".
I hope it can help you...
Hardik Savani
I'm a full-stack developer, entrepreneur and owner of ItSolutionstuff.com. I live in India and I love to write tutorials and tips that can help to other artisan. I am a big fan of PHP, Laravel, Angular, Vue, Node, Javascript, JQuery, Codeigniter and Bootstrap from the early stage. I believe in Hardworking and Consistency.
We are Recommending you
- Laravel - How to Get All Files in a Directory?
- How to Get All Routes in Laravel?
- Laravel Download File from URL to Storage Example
- How to Write Text on Existing PDF File in Laravel?
- How to Get Browser Name and Version in Laravel?
- How to Convert JSON to Array in Laravel?
- Laravel Cashier Stripe Subscription Example Tutorial
- How to Use Google Translator in Laravel?
- How to Automatically Generate Sitemap in Laravel?
- Laravel Contact Form Send Email Tutorial
- How to Add Google Map in Laravel?
- Laravel JQuery UI Autocomplete Ajax Search Example