Learn JavaScript
React Tutorial
Learn Programming
Build your next powerful web app
Laravel & Angular Package
Get Started
Laravel
Response macros integrated with your Angular app
<?php
class
PostsController
{
public
function
get
()
{
$posts
=
App
\
Post
::
get
();
return
response
()->
success
(compact(
'posts'
));
}
}
Angular
Query your API without worrying about validations
export class
PostsService
{
constructor
(
private
http: Http){}
getAll
(){
return
this
.http
.get(
'api/posts'
)
.map(response
=>
response.json());
}
}
The right features to get you started
RESTful API
Build consistent REST APIs and call them fluently using JS, without worrying about validation errors
Json Web Token Auth
Get an out-of-the-box JWT Authentication in your app that allows you to authenticate users on the fly