framework
framework copied to clipboard
The Goravel Framework.
## ๐ Description Closes https://github.com/goravel/goravel/issues/730 This PR introduces a modern, flexible event handling system with `Listen()` and `Dispatch()` methods, replacing the old `Register()`/`Job()` pattern. The new system supports wildcard patterns,...
## ๐ Description Closes https://github.com/goravel/goravel/issues/566 ## Basic Usage ### Creating Collections ```go // Create from variadic arguments numbers := collect.New(1, 2, 3, 4, 5) // Create from slice items :=...
## ๐ Description Addresses https://github.com/goravel/goravel/issues/714 by adding chunk by methods. This PR adds four new methods to the ORM: 1. `Chunk` 2. `ChunkByID` 3. `ChunkByIDDesc`: Exists in Laravel and is...
[notificationๅผๅ่ฟ็จไธญๅ ไธช้ฎ้ข.docx](https://github.com/user-attachments/files/23595259/notification.docx) @hwbrzzl Several questions during the development of notifications, please provide answers.
## ๐ Description Closes https://github.com/goravel/goravel/issues/373 ## โ Checks - [ ] Added test cases for my code
## ๐ Description This PR adds two Artisan commands 1. Up 2. Down ```bash go run . artisan down go run . artisan up ``` The `down` commands creates a...