Laravel4 API vs bundle - laravel

So I'm using Laravel 4 to write a web application. This web application also has an API. If I was using Laravel 3, I would simply create a bundle. What do I do in Laravel 4?

You could create a package, which isn't to difficult if you follow the docs. http://four.laravel.com/docs/packages

Related

How to integrate remita in laravel application?

How to Integrate API remita in laravel? I want to do api integration remita in laravel for my project. Please anyone say some good ideas. I am tried to implementation https://github.com/femonofsky/remita-laravel, but I am failed.
$ "femonofsky/remita": "~1.0"
I used in Laravel 6.2.8.

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 integrate an existing vuejs app created with vue-cli into a laravel project

I've a vuejs app builded with the latest vue-cli, the vuejs app runs ok with the development server and communicates with the laravel app, but now I'd prefer that laravel handle this static files...if I build the js files with yarn run build this generates me several files, I could add thems to my laravel homepage but I'm afraid that if in the future I make some change and build these files again, I could get different file names...
what is the best approach for this???...I've found several articles integrating vuejs and laravel but all these are using the vuejs tool incorporated with laravel
thanks so much guys

Blog app with laravel 5.6 api and vue.js

I have two projects. The first is laravel 5.6 project which contains api for getting posts.
The second project is vue.js project and it will be used toa display all posts. Please help me how to configure vue.js project to get data from laravel api?
Host both projects separately and Rest api will connect two projects. This is only a one way to address your problem.

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

Resources