Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Multiple Projects using single laravel instance

I am new to Laravel. As per my research on this framework I find it quite useful for my projects. However I am facing difficulty in customizing it to use a single instance of Laravel framework for multiple projects. I do not want to follow the multi site approach as available in Laravel i.e., using directory structure in models and controllers for projects because I won't be able to push my project related changes in a single step in Git.

I want something like this.

  • common Laravel framework (having common libraries and vendor files. Also having common functionalities used by different projects)

    app/controllers

    app/models

    app/views

    vendor

    bootstrap

  • Proj1 (having its own entities and is able to use common libraries and model functions from common Laravel framework)

    app/controllers

    app/models

    app/views

    bootstrap

  • Proj2 (having its own entities and is able to use common libraries and model functions from common Laravel framework)

    app/controllers

    app/models

    app/views

    bootstrap

i.e., New project must have its own app directory and is able to use model functions from common project.

This will ease my task and would be very useful for my upcoming projects. If someone could help me with this I'll really appreciate.

like image 943
kanchan Avatar asked Mar 21 '14 09:03

kanchan


People also ask

How to run multiple Laravel projects at the same time?

How to run multiple Laravel projects at same time? Open your command prompt and go to your drive where your Laravel project exists. Now type http://localhost:8000 in the browser and your blog project will run.

How to create a blog in Laravel using Laravel?

Open your command prompt and go to your drive where your Laravel project exists. Now type http://localhost:8000 in the browser and your blog project will run. Again open another command prompt and again go to your another Laravel project blog another,

How to create a new Laravel application using valet?

Create a new Laravel project using the command below: This will create a new Laravel application in an acme directory. Open the project in a code editor of your choice. The next thing we need to do is create our primary domain using Valet and then add the other two proposed subdomains.

How do I use subdomain routing in Laravel?

We will be using the Laravel subdomain routing to route different parts of the application to different logic. Open the app/Providers/RouteServiceProvider.php file and replace the contents map method with the following: public function map () { $this->mapApiRoutes (); $this->mapAdminRoutes (); $this->mapWebRoutes (); }


2 Answers

There's not really a question here to be answered, but in general terms what you want to do is very feasible.

You could create a directory under the apps folder for each project and namespace each of the classes in the structure you create below it. You'd then use PSR (ideally PSR-4) autoloading to make these classes accessible.

You'd put the routes for each project in their own routes file and then include them through the main routes file, or you could create a service provider for each project, add it your app config file and use that to load the routes for that project.

HOWEVER, all that said, this isn't what I would do. You haven't said why you want to structure your projects this way, so you may have a perfectly good reason, but personally I prefer to put common libraries into their own packages (helps to ensure clear boundaries and clean apis) and use Composer to pull them into each project.

like image 92
petercoles Avatar answered Oct 04 '22 07:10

petercoles


Use Namespaces To Organize and Separate Things

Create PSR-4 autoloading entries to separate your projects files by namespace:

"psr-4": {
    "App\\Core\\": "app/App/Core",
    "App\\Main\\": "app/App/Main",
    "App\\Project1\\": "app/App/Project1",
    "App\\Project2\\": "app/App/Project2"
},

Everything common you put in Core, everything non-common in the related project files.

Now you just have to create your files in theirs respective folders and namespace them:

This is a BaseController in Core, used by all your controllers:

<?php namespace App\Core\Controllers;

use Controller; // This is the Laravel Controller

class BaseController extends Controller {

}

This is a BaseController of the Main application using your Core Controller:

<?php namespace App\Main\Controllers;

use App\Core\Controllers\BaseController as CoreBaseController;

class BaseController extends CoreBaseController {

}

And this is a HomeController of the Main application using your its Base Controller, as they are in the same namespace you don't even need to import the file:

<?php namespace App\Main\Controllers;

class HomeController extends BaseController {

}

Every single class file in Laravel can be organized this way, even your views, so you can have those files:

app/App/Core/Controllers/BaseController.php

app/App/Main/Controllers/BaseController.php
app/App/Main/Controllers/HomeController.php

app/App/Project1/Controllers/BaseController.php
app/App/Project1/Controllers/PostsController.php
app/App/Project1/Controllers/UsersController.php

app/App/Project1/Models/User.php
app/App/Project1/Models/Post.php
app/App/Project1/Models/Roles.php

Then your routes could be separated (organized) and prefixed by namespace:

Route::group(['prefix' => 'project1', 'namespace' => 'App\Project1\Controllers'], function()
{
    Route::get('/', 'HomeController@index');

    Route::get('posts', 'PostsController@index']);
});

Giving those urls:

http://yourdomain.com/project1
http://yourdomain.com/project1/posts

And pointing actions to those controller actions:

App\Project1\Controllers\HomeController@index
App\Project1\Controllers\PostsController@index  
like image 36
Antonio Carlos Ribeiro Avatar answered Oct 04 '22 09:10

Antonio Carlos Ribeiro