Laravel has ability to make multiple database connection and can be used any of connection at runtime. In this article i will show you to create multiple database connection from different servers and then use these connection in our application…

How to run specific seeder class in laravel 9 ?
In our last article we learnt about how to create seeder in laravel but sometimes we only need to run a specific seeders rather then running all so in this article we will cover to run a specific seeder. We…

How to create seeders in laravel 9 with example ?
As the name implies seeders, seeder are used to fill the database using seed classes. Sometimes in our application we wanted to test our application with some data and in that case we require seed the database may be with…

How to make database connection in Laravel 8 ?
Laravel comes with first party support for several database drivers. Laravel gives much better flexibility in terms of using the RDBMS based databases. Laravel supports MySQL, PostgreSQL, SQLite and SQL Server by default but if you want to make connection…