where is module directory in laravel - codeigniter

In CodeIgniter framework there is a module directory :
application\models
but where is this directory in laravel 5 framework ?

It doesn't have one. Most people put models in the app folder itself, i.e. App\User. If you don't like that, just make a folder called Models and put them there.

Laravel 5 doesn't have any model directory because laravel is not MVC framework.
Please refer laravel forum following url:
http://laravel.io/forum/10-26-2014-laravel-5-where-is-the-models-folder

Related

How is it possible to include a .blade file from outside of the Laravel project?

I have a Laravel 5.8 project and I'm using Blade to display the website.
However, I have .blade files outside of the Laravel project, that I'd like to #include() or display from the controller with return view(); with blade.
Here is a similar folder structure:
/var/www/examplesite1/
/var/www/examplesite2/
/var/www/laravel/
/var/www/storage/blade/
So for example the Laravel application is on the /var/www/laravel/ path. The blade file I'd like to get is from this path /var/www/storage/blade/.
What I tried was:
return view('/var/www/storage/blade/file.blade.php');
include('/var/www/storage/blade/file.blade.php');
None of them worked, becauase I got an error like this: View [.var.www.storage.blade.file.blade.php] not found.
I also tried it with omitting the 'blade.php' from the end, but it's the same.
Is it possible to include a blade file from outside the Laravel project? If yes, how?
You can add new directories to the views paths in config/views.php. https://laravel-news.com/laravel-view-path

Intergrate Laravel Library in Codeigniter Project

I have one library in laravel :-
https://github.com/mjaschen/collmex
I want to integrate it in my Codeigniter project, Can anyone help me in it?
since both use composer, you can simply require it.
but since you can't use service providers...you have to call them manually (i.e. you won't get access to alias in laravel) except that...you can do everything as in laravel project.

How to use core php session value in laravel framework?

There are 2 projects:
Built in core php.[main project]
Built in laravel.
We are integrating laravel with php. In core php folder I am placing a laravel folder. In main project I am linking to laravel project by click on a particular link.
During login to the main project [core php], we are setting emailid into session.
I want that emailid session value in to laravel folders. how do I access that core php session value from laravel project folder.
Is it possible?
Example link click here
but still there is some issues in that as laravel not able to access session object data

Codeigniter working directory inside another working directory

Hi I am working on codeigniter for a while now and have met with an issue.
I use "localhost/controller/function" which is how codeigniter works.
Where controller classes are in controller folder in application.
I have a new codeigniter setup in root folder names "big" with its own controller, view, models etc. How can I run files in "big" like I do for my the original application.
I tried "localhost/big/controller/function", which obviously didn't work.
Please help, I am completely new with codeigniter.
just go to index.php of your application (big)
change/add line:
$application_folder = "applications/big";

How to separating frontend and backend using codeigniter

I am a new php developer. Am developing my website using codeigniter and got stuck when i tried to make the backend. Am using CMS backend that comes with its own folder with everything (.htaccess, its own MVC etc) so I put all my frontend folders into one folder called frontend withinn the application folder but now I cannt view my frontend pages. I get this: The configuration file does not exist. Please help me step by step.
check out this link to know the MVC pattern Codeigniter.
controller and model ----- Backend
Views --- Frontend

Resources