Skip to content

Commit e129d63

Browse files
Merge branch 'main' of github.com:bensondevs/laravel-boilter-plate
2 parents dd0bcfe + 2136f53 commit e129d63

File tree

1 file changed

+50
-0
lines changed

1 file changed

+50
-0
lines changed

README.md

Lines changed: 50 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,50 @@
1+
# laravel-boilter-plate
2+
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

Comments
 (0)