laravel two seprate databases code example

Example 1: laravel 8 app with more than one database

<?php  class BlogController extends BaseController{    public function getRecord()    {        $blogModel = new Blog;        $find = $blogModel->find(1);        return $find;    }}

Example 2: laravel 8 app with more than one database

<?php.....public function up(){    Schema::create('blog', function (Blueprint $table) {        $table->increments('id');        $table->string('title');        $table->string('body')->nullable();        $table->timestamps();    });}.....

Tags:

Php Example