Skip to content
This repository has been archived by the owner on Aug 9, 2022. It is now read-only.

Releases: mitulgolakiya/laravel-api-generator

Bug Fixes Release

23 May 19:15
Compare
Choose a tag to compare

This release contains minor Bug fixes.

Custom Templates, Fields from File and Search in views

22 May 12:04
Compare
Choose a tag to compare

Custom App Namespace & Better migration generation

13 May 19:14
Compare
Choose a tag to compare

This release contains two major updates.

Used Default Exception for API Response

02 May 07:05
Compare
Choose a tag to compare

We are no longer using our own APIExceptionsHandler to send API fail responses and using Laravel's own HttpResponseException to overcome App\Exceptions\Handler overwrite problem.

Minor text fix release.

25 Apr 09:14
Compare
Choose a tag to compare

Minor Fields labels fixed.

Soft Delete Trait Added.

11 Apr 08:28
Compare
Choose a tag to compare

This release include generating model with SoftDelete trait.

If you want to use SoftDelete trait with your models then you can specify softDelete option.

e.g.

php artisan mitul.generator:api Post --softDelete

Minor Fixes Release

09 Apr 04:17
Compare
Choose a tag to compare
v1.2.2

minor fixes

Responsive Fields and Delete Confirmation

03 Apr 07:46
Compare
Choose a tag to compare

This release includes some minor fixes and following changes.

  • Fields made responsive
  • Delete confirmation while deleting a record.

Common Errors file and Namespace Fixes

30 Mar 12:46
Compare
Choose a tag to compare

This release includes common errors.blade.php for all generated views.
It also contains various bug fixes of namespaces.

API Scaffold Release

27 Mar 12:00
Compare
Choose a tag to compare

New Command introduced to generate API as well Scaffold.

php artisan mitul.generator:scaffold_api Post

OtherBreaking Changes:

  • API prefix api_prefix support in config/generator.php.
  • API Controller is now generated in Http/Controllers/API/ with namespace App\Http\Controllers\API which can be configured as well. (path_api_controller & namespace_api_controller).

(Thanks to @anand-patel)