rbfraphael/laravel-boilerplate

Additional components for Laravel

1.0.16.1 2025-04-15 12:41 UTC

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.