Skip to content
This repository has been archived by the owner on Jan 10, 2020. It is now read-only.

Releases: GrafiteInc/Builder

Improved Cryptography utilities

06 May 21:31
Compare
Choose a tag to compare

Cryptography utilities are now improved
Added new changelog.md file for easier tracking

New Semantic UI support and CRUD updates

26 Apr 15:57
Compare
Choose a tag to compare

CRUD now supports schema definitions
New CRUD generation from existing tables
New semantic command to build the views with semantic-ui as the css framework
CRUD builder now supports semantic UI

Adds Account Service to Billing

22 Apr 13:59
Compare
Choose a tag to compare

If you opt in to use the billing structure that Laracogs can put together for you then you'll now have access to the AccountService which will provide a set of methods to handle limitations in your application based on subscriptions. It includes a simple method for building a credit system as well should your app require it.

Minor fixes to custom app namespaces

17 Apr 17:43
Compare
Choose a tag to compare

Minor fixes to custom app namespaces
Laracogs config now handles custom app namespaces
Updates to the CRUD templates for custom app namespaces

Now supports custom app namespace

16 Apr 03:24
Compare
Choose a tag to compare

Now if you start a Laravel app with a custom App namespace, the starter, billing, bootstrap, notifications, socialite, and other commands all support it.

New Notifications

15 Apr 04:00
Compare
Choose a tag to compare

New Notifications generator command
Code cleanup all around in views and commands
Added request validations for some starter kit parts
New unit tests

Now with Socialite Integration

11 Apr 21:49
Compare
Choose a tag to compare

Now includes a command to generate an example of socialite integration with github. You could use any other Oauth 2 based integration with minimal modifications. But for Twitter with Oauth 1 you will have to modify further.

New Blade directives, Helpers and Relationships

08 Apr 06:44
Compare
Choose a tag to compare

We've added in various blade directives as well as basic helpers for the various methods.
A few internal improvements on FormMaker as well as InputMaker
New relationship support for the FormMaker means you can list out relationships as select and select multiple input types.
Bootstrap structure updates
Starter kit updates
Readme updates
Latest documentation is available at: http://laracogs.com

Now with APIs

23 Mar 19:30
Compare
Choose a tag to compare

Laracogs now comes with an API starter kit using JWT from Tymon: https://github.com/tymondesigns/jwt-auth

You can use the starter kit to set up your application. Then run the API to build on the API layer. Then using the amazing CRUD builder with the new --api option you can auto generate your APIs as well as your full GUI for a CRUD in your application.

Please read up on the changes you will need to do to your application to handle JWT.

Accounts are now User Meta

22 Mar 00:19
Compare
Choose a tag to compare

Transformed the basics of the starter tool from accounts to user meta (don't worry - there are no changes to the form builder, crud, or crypto parts). After some discussion we realized that Accounts is too presumptive - maybe you want to keep accounts for a billing component or something else. Therefore we switched to UserMeta this is clear and even more simple. Ultimately your User remains unchanged from the core of Laravel, and you simply add more information to their 'profile' or user meta.

Also includes some minor updates to UI elements, billing improvements, and more.