Unfortunately, this project has been discontinued.
A member of the community has suggested the following replacement.
This replacement is not affiliated with laravel-angular.io

Model setup

In this step, we'll generate the model, & migration file

Migration & Model

Let's start by generating the Model & the migration file.

php artisan make:model Post -m

Then let's add the required fields to our migration file:

$table->string('title');
$table->text('description');

Then run the migration

php artisan migrate