Build your next powerful web app

laravel angular material starter

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

Class PostsController {
    constructor(API){
      'ngInject';
      this.API = API;
      this.posts = [];
    }

    getPosts(){
        this.API.all('posts').get('')
        .then((response) => {
              this.posts = response.data;
        });
    }
}

Laravel Angular Material Starter

The right features to get you started

RESTful API
Build consistent REST APIs and call them fluently using JavaScript, without having to worry about validation errors
Json Web Token Authentication
Get an out-of-the-box JWT Authentication in your app that allows you to authenticate users on the fly
Angular Generators
Generate angular features, dialogs, directives, services, filters & configs just like you're used to