How to creating an app with Laravel + EmberJS - laravel

I need to create an app using EmberJS 2.18 for the frontend and Laravel ^6.0 for the backend. I found a guide (here: https://culttt.com/2015/04/06/getting-started-with-laravel-and-ember/) but it's 5 years old and after following its advice it referred to directories that don't exist so I couldn't complete it and I don't know how to check if it's working.
I have zero experience with either framework and I'm trying to piece this all together. Is there an easy to follow tutorial for how to set this up?

Related

Laravel Odoo API

I have been using Edujugon/laradoo for interfacing Laravel with Odoo. In a new project I have been using Laravel 9 and Edjugon/Laradoo does not install anymore.
Can somebody help me by updating Edjugon/Laradoo since the composer setting do not fit anymore with laravel 9. I am not enough of an expert to do that myself. The goal is a successful composer require in Laravel 9. I contacted the author but he seems to be not active anymore.
I found a different solution: tbondois/odoo-ripcord. It is not as elegant as Edjugon/laradoo but it does the work.

Laravel 5.2 & Angular 2 CRUD Example

I am new to Angular2 & want to integrate it into my existing Laravel App built with Laravel 5.2, I have searched for an efficient example with the same but no luck, Can any one help me with it?
I would like to have a basic CRUD example with Laravel 5.2 & Angular2[not the beta version].
Thanks in advance!
The best practice would be to use Laravel and Angular decoupled as separate applications with the Angular front end just consuming the Laravel exposed services. You can achieve that by checking examples and tutorials dedicated for each in part (interfacing via JSON/XML/etc.).
Here are some repositories to exemplify such integration:
https://github.com/Nightwhistle/Laravel5-Angular2-Material
https://github.com/softdevelop/Laravel5.3-Angular2-CRUD-Demo
https://github.com/aayaresko/laravel-demo-app-extended
https://github.com/trungcheng/laravel5-angular2-chat-socket
https://github.com/VsevolodYA/laravel5-angular2-dashboard

Getting a laravel script ready for clients

I'm developing a paid application that is based on laravel. I want ideas about how to package the app and how to decrease laravel file size and get rid of all laravel components that is of no use on production/every case, for example: Boris , Predis and maybe Swift email .. What is the proper way to remove them and what other parts of laravel can be removed with no effects?
Scripts could be used in shared hosting or by people with minimum and tech knowledge .. So, it should be easy for them

The facebook-ion-auth library in CodeIgniter

I m new to codeigniter . I m developping a project in which I have used the ion_auth library. I have to make my authentification supports facebook login. I have found facebook-ion-auth , but didn't understand how can I use it. Even in the readme file ,I haven’t found steps of installation. someone can help me?
Read a tutorial on
http://www.digitalwhores.net/codeigniter/codeigniter-ion-auth-and-facebook-ion-auth-tutorial/ that I made a few months ago

gradually migrate application from codeigniter to Laravel

I have a quite large application written in Codeigniter 1.7.
It needs some significant enhancements and I have been evaluating Laravel 4 as the PHP framework.
I am trying to find out if anyone has successfully extended an existing Codeigniter application using Laravel so that some screens are Laravel and some are Codeigniter.
I imagine that authentication (currently using Ion Auth) and Session management (using mysql backend) would be two major hurdles to overcome.
If this is an option then I will explore in more detail as the amount of legacy code needing transferring is considerable.
Thanks in advance.
I suppose in your Laravel routes file, create a route for every page you have written in CodeIgniter. Route everything to the URL that CodeIgniter is expecting and as you complete portions in Laravel, change the routes to point to the correct ones Laravel expects as you go.
Before you do anything though, I'd get everything you need for authentication finished in Laravel, turn authentication off in CodeIgniter, and just let Laravel handle that in the routes.

Resources