Skip to content

Releases: hariadi/laravel-boilerplate-generator

Support Laravel 7

12 Apr 23:53
652c5dc
Compare
Choose a tag to compare

Remove support for Laravel 5.6

Support Laravel 6

09 Oct 15:00
Compare
Choose a tag to compare
v1.2.0

Support Laravel 6.0

Add event generator

16 May 00:38
Compare
Choose a tag to compare

Command:

php artisan event:created
php artisan event:updated
php artisan event:deleted

Fix worng path when running in console

24 Dec 08:08
Compare
Choose a tag to compare
v1.0.1

Fix wrong path when running in console

Namespace strategy

24 Dec 04:08
Compare
Choose a tag to compare

Add namespace strategy option. This allow generated file and directories combined in given namespace. See under Output strategy in README

Add Method traits

28 Nov 01:54
b1f0b8e
Compare
Choose a tag to compare
v0.2.0

Update stub

Add method to stub

28 Nov 01:26
Compare
Choose a tag to compare
v0.1.8

Forgot to add method to stub

Include method trait by default

23 Nov 11:49
Compare
Choose a tag to compare
v0.1.7

Include method trait by default

Add Method traits

22 Nov 02:58
Compare
Choose a tag to compare

Support Laravel 5.5 package auto discover

Add and generate softdelete method by default

20 Sep 15:25
Compare
Choose a tag to compare

app:repository <model> by default will generate two method, forceDelete and restore.

To disable softdelete add option -d or --disable-softdelete like this:

php artisan app:repository Backend/Question -d

Your App/Repositories/Backend/Question/QuestionRepository will be created without delete and restore method