Skip to content

Commit d417348

Browse files
author
Jonathan
committed
small change readme
1 parent d927a3b commit d417348

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

README.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -36,15 +36,15 @@ A `Post` can have a `title` and a `content` fields
3636

3737
Let's do this 🙂
3838

39-
<sub>You need a REST API instead of a CRUD ? [Read this wiki](https://github.com/misterdebug/crud-generator-laravel/wiki/Make-a-complete-REST-API-instead-of-CRUD)</sub>
39+
<small>You need a REST API instead of a CRUD ? [Read this wiki](https://github.com/misterdebug/crud-generator-laravel/wiki/Make-a-complete-REST-API-instead-of-CRUD)</small>
4040

4141
#### CRUD generator command :
4242

4343
``` php artisan make:crud nameOfYourCrud "column1:type, column2" ``` (theory)
4444

4545
``` php artisan make:crud post "title:string, content:text" ``` (for our example)
4646

47-
<sub>[Available options](https://github.com/misterdebug/crud-generator-laravel/wiki/Available-options-when-you-use-make:crud-command)</sub>
47+
<small>[Available options](https://github.com/misterdebug/crud-generator-laravel/wiki/Available-options-when-you-use-make:crud-command)</small>
4848

4949
When you call this command, controller, views and request are generated with your fields (here: title and content).
5050
![image](https://user-images.githubusercontent.com/23297600/192172786-1703f7b8-f577-45c1-b0f9-296999827af2.png)
@@ -80,7 +80,7 @@ A controller file is created in your **app/Http/Controllers** directory. All met
8080

8181
To create your routes for this new controller, you can do this :
8282

83-
``` Route::resource('posts', PostsController::class); ``` <sub>(don't forget to import your `PostsController` in your `web.php` file)</sub>
83+
``` Route::resource('posts', PostsController::class); ``` <small>(don't forget to import your `PostsController` in your `web.php` file)</small>
8484

8585
##### Screenshots
8686

@@ -116,7 +116,7 @@ Add your `Tag` CRUD (with a `column` name)
116116
``` php artisan make:crud tag "name" ```
117117

118118
FYI : `Comment` is a specific case and you can use `make:commentable` command
119-
[Docs about commentable](https://github.com/misterdebug/crud-generator-laravel/wiki/Add-a-commentable-structure-to-any-model)</sub>
119+
<small>[Docs about commentable](https://github.com/misterdebug/crud-generator-laravel/wiki/Add-a-commentable-structure-to-any-model)</small>
120120

121121
Finished 🎉
122122

0 commit comments

Comments
 (0)