storm
storm copied to clipboard
The library powering Winter CMS
Take into account $id param of `model.relation.afterAttach` could be a model
Simplifies the routing service provider and checks if routes are cached. If so, this will load the cached routes on the app being booted. Fixes https://github.com/wintercms/winter/issues/666
Replaces #112 ```php Model::extend(function ($model) { $model->behaviorMethodAvailable(); }, after: true); ``` Related: https://github.com/wintercms/docs/pull/98
Currently building a `Winter.User` blogs plugin, based on `Winter.Blog`. I needed to list all the available parent categories for the current one, but excluding the current category's children to avoid...
This PR leverages the new Password Broker service that was introduced in Laravel 7 (I believe) to provide password reset services for users. More details forthcoming once it's closer to...
A simple PR that adds some php8.0 features and enforces return types. Something of note, all the widths & heights should probably be `int`s but in reality they work off...
Fixes https://github.com/wintercms/winter/discussions/214. This fixes a long standing issue with the ClassLoader that handles loading module and plugin classes where only lowercase paths to the (properly cased) class file were technically...
Pivot::fromAttributes() instead of new Pivot(): https://github.com/laravel/framework/commit/06f01cf50f5060bd23b16d8c651869c97a43f139 & https://github.com/laravel/framework/commit/4b30aad8539f300bfa35394d1d86a760b15389c5 (protected) Pivot()->parent -> (public) Pivot()->pivotParent: https://github.com/laravel/framework/commit/29a181fd64a1d07e071351e61e8403bf00ea4b3c & https://github.com/laravel/framework/commit/22c3c022faea8796a74dc537ec260ec3f839bf5b $otherKey -> $relatedKey: https://github.com/laravel/framework/commit/d2a77776295cb155b985526c1fa1fddc190adb07 Added fromRawAttributes() method to Pivot: https://github.com/laravel/framework/commit/f356419fa6f6b6fbc3322ca587b0bc1e075ba8d2 Various improvements to setKeysForSaveQuery():...
Continue work started by @bennothommo & @wverhoogt