rbfraphael/laravel-boilerplate

Additional components for Laravel

1.0.15 2025-03-21 16:18 UTC

This package is auto-updated.

Last update: 2025-03-21 16:20:05 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.