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
This package is not meant to handle javascript or html in any way. This package handles database storage and read/writes only.
13
11
14
12
There are no real limits on what characters can be used in a tag. It uses a slug transform to determine if two tags are identical ("sugar-free" and "Sugar Free" would be treated as the same tag). Tag display names are run through Str::title()
#### Composer Install (for Laravel 5/6/7 and Lumen 5/6/7)
20
-
21
-
```shell
22
-
composer require rtconner/laravel-tagging "~4.0"
14
+
```bash
15
+
composer require rtconner/laravel-tagging
23
16
```
24
17
25
18
#### Install and then Run the migrations
@@ -84,11 +77,6 @@ Article::existingTags(); // return collection of all existing tags on any articl
84
77
85
78
[Documentation: Lumen](docs/lumen.md)
86
79
87
-
#### Upgrading Laravel 4 to 5
88
-
89
-
This library stores full model class names into the database. When you upgrade laravel and you add namespaces to your models, you will need to update the records stored in the database.
90
-
Alternatively you can override Model::$morphClass on your model class to match the string stored in the database.
0 commit comments