rbfraphael / laravel-boilerplate
Additional components for Laravel
1.0.15
2025-03-21 16:18 UTC
Requires
- php: >=8.2
- illuminate/console: ^12.0
- illuminate/database: ^12.0
- illuminate/support: ^12.0
- laravel/framework: ^12.0
README
Additional components for Laravel
-
This package adds a Repository class for Laravel, for you to implement Repository pattern.
-
Also, it includes a "make:repository" command to Artisan
-
This package adds a WithUuid trait for using with models, that is supposed to have a "uuid" column alongside to traditional "id".
-
This package adds a Enum class that should be extended to implement your own Enum with static values and a method to get label for each value.
-
This package adds a "make:action" Artisan command to create Actions, following the Service design pattern, also called Action design pattern.