You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Laravel Boiler Plate to start development with ease. This package will help you to start development with some extensions of
3
+
4
+
## How to install
5
+
6
+
Run the below command in the Laravel root folder
7
+
8
+
```
9
+
composer require bensondevs/laravel-boiler-plate
10
+
```
11
+
12
+
## Features
13
+
14
+
### Generate a Service class
15
+
This feature will create a service class in the folder of `app/Services`
16
+
17
+
```
18
+
php artisan make:service SomeModuleService
19
+
```
20
+
21
+
### Generate a Repository class
22
+
This feature will create a repository class in the folder of `app/Repositories`
23
+
24
+
```
25
+
php artisan make:repository MyModelNameRepository
26
+
```
27
+
28
+
### Generate an Enum Class
29
+
This feature will create an enum class in the folder of `app/Enums`
30
+
31
+
```
32
+
php artisan make:enum MyChoicesEnum
33
+
```
34
+
35
+
### Generate a Contract class
36
+
This feature will create a contract class in the folder of `app/Contracts`
37
+
38
+
```
39
+
php artisan make:contract YourContract
40
+
```
41
+
42
+
### Generate a Helper File
43
+
This feature will create a helper file and automatically register it to the `composer.json` to enable the developers to use it immediately without sweating
44
+
45
+
```
46
+
php artisan make:helper SomeAspectHelper
47
+
```
48
+
49
+
### Built-in Helpers
50
+
To see the helpers created please check in `src/Helpers`
0 commit comments