Build your next powerful web app

Laravel & Angular Package

Get Started

This project has been archived. If you're curious, check out one of my latest courses:

If you work with JavaScript, check out the fetch use cases and JavaScript projects.

Thank you! — Jad Joubran

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