Laravel project within another laravel project - php

I have project which is built with laravel 3.
Currently, I made another products using Laravel 5.2.
Is it possible to have Laravel 5.2 within Laravel 3. HOST do not care what framework is used.
In this case we have two ROUTES.
Both uses same DB.
It would be real nice if we could do this:
http://aaaa.com/ is the main application which is redirected to public_html
and is it possible to do this:
http://aaaa.com/laravel5/ is the application in Laravel 5.2 redirect to public.
What do I have to do in .htaccess?
any help would be nice

Related

Connect Angular 4 with LARAVEL 5.4

I want to develope an website with Angular 4 and Laravel 5.4. The question is how to connect in a better way this two framework. It`s a good idea to make a subdomain for laravel 5.4 (api.exameple.com) and running angular 4 on main domain (example.com) and connect it to laravel through API or exist another way to integrate laravel with angular?? And in general is a good idea to use laravel 5.4 and angular 4 for a big project?
Sorry for my bad english.
You should create a containing folder which you can name anything, probably the project name, like my-blog and in that folder (my-blog) you should create your laravel and angular projects.
ng new frontend(your angular project)
composer create-project laravel/laravel backend
These will generate two folders for you in the my-blog folder and you can link them by making api calls from the frontend to the backend.

Laravel URL issues for specific keywords

I am working on Laravel 4.2. I have create one route in route.php like
abc.com/pro.
My Route For abc.com/pro is:
Route::get('pro', 'MyController#login');
Above URL working fine on local, but not working same on server.
Can anyone help me?
Does Laravel has some in built which does not allow Laravel itself in URI?

Running a Laravel Application alongside another app

So I have a question relating running a Laravel application alongside another application and how I can achieve getting past (or utilising) Laravel's routing to run them in harmony.
So assume we have the following file structure
Public_html
/public - holding Laravel files
/billing - holding WHMCS
How can I get around Laravel not finding routes and throwing an exception? Could I deploy the Laravel app to find the index of public in the root folder instead?

How to create laravel5 authentication

How to create laravel 5 authentication. I am upgrading the app from laravel 4 to laravel 5 .
In laravel 4, I have used logincontroller to authenticate the user using api.
How can I do it in laravel 5.
Laravel 5 comes with Auth built-in. Run the following artisan command to get Laravel to setup the required controllers and views to handle auth:
php artisan make:auth
The project structure have changed a lot from Laravel 4 to Laravel 5. The controller folder which was initially in app/ director now moved to app/http/Controller directory and so on. So all your old code structure need to be refactored in order to work with Laravel 5.
You can cross-check if you didn't miss anything while upgrading by this
http://www.sitepoint.com/laravel-4-laravel-5-simple-upgrade-guide/ .

Work on Laravel project as a team

My team and I are trying to work on a web development project using Laravel. We want to work on separate files of the same project simultaneously, but since Laravel generates a user specific code for a project we cannot sync our files properly.

Categories