Skip to content

Releases: nova-framework/system

Improve the Routing and the Forge's Routes List command

20 Sep 15:54
Compare
Choose a tag to compare

Removed Route::controller() and added before and after filters into Forge routes lists compiled from both routes and controllers.

Overall improvements

20 Sep 07:56
Compare
Choose a tag to compare
v3.78.5

Overall improvements

Improved Routing

19 Sep 20:31
Compare
Choose a tag to compare
v3.78.4

Improve the Nova\Routing\ControllerDispatcher

Improve the Nova\Routing\Redirector

19 Sep 09:52
Compare
Choose a tag to compare
v3.78.3

Improve the Nova\Routing\Redirector

Overall improvements

18 Sep 19:07
Compare
Choose a tag to compare
v3.78.2

Improve the Nova\Routing\ControllerDispatcher

Improve the Modules support

18 Sep 05:24
Compare
Choose a tag to compare
v3.78.1

Improve the Modules support

Implementation of the Database Migrations and Seeding

16 Sep 17:50
Compare
Choose a tag to compare

Overall improvements and adding support for generating Events

14 Sep 23:41
Compare
Choose a tag to compare

Added missing function name to ReCaptcha helper

10 Sep 21:14
Compare
Choose a tag to compare

Overall improvements & new method in ORM's QueryBuilder: firstOr()

09 Sep 15:40
Compare
Choose a tag to compare

firstOr() returns the first result or execute a given callback.

Usage example:

$user = User::where('username', $username)->firstOr(function () 
{
     throw new HttpException(403);
});