File tree Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -23,7 +23,7 @@ Copy ```config/repository.php``` file to your project ```config/``` directory.
23
23
|-- app
24
24
...
25
25
|-- config
26
- |-- repository.php (core confid file)
26
+ |-- repository.php (core config file)
27
27
```
28
28
29
29
** Step 3:**
@@ -57,7 +57,7 @@ Edit the config file. Remember All the directories are under `app` directory.
57
57
58
58
## Usage
59
59
60
- ** Make Repository:**
60
+ ### Make Repository:
61
61
62
62
The following command makes a repository class ``` TestRepositoryName ``` using model
63
63
``` TestModelName ``` .
@@ -66,7 +66,7 @@ The following command makes a repository class ```TestRepositoryName``` using mo
66
66
php artisan make:repository TestRepositoryName TestModelName
67
67
```
68
68
69
- ** Make Repository with Service:**
69
+ ### Make Repository with Service:
70
70
71
71
The following command makes a repository class ``` TestRepositoryName ``` using model
72
72
``` TestModelName ``` and a service ``` TestServiceName ``` .
@@ -83,7 +83,7 @@ php artisan make:repository TestRepositoryName TestModelName --s=TestServiceName
83
83
84
84
Service flag ``` --service ``` or ``` --s ``` is optional.
85
85
86
- ** Make Service:**
86
+ ### Make Service:
87
87
88
88
The following command makes a service class ``` TestServiceName ``` using repository
89
89
``` TestRepositoryName ``` .
@@ -99,7 +99,7 @@ Pull requests are welcome. For major changes, please open an issue first to disc
99
99
100
100
Please make sure to update tests as appropriate.
101
101
102
- ## Inspired By:
102
+ #### Inspired By:
103
103
104
104
##### [ Mohammad Imran Hossain] ( https://github.com/imranctg16 ) .
105
105
You can’t perform that action at this time.
0 commit comments