diff --git a/README.md b/README.md index adedae2..d0e71c5 100644 --- a/README.md +++ b/README.md @@ -9,9 +9,9 @@ A lightweight way to handle UTM parameters session-based in your Laravel Application. ```blade -@if(has_utm('source', 'newsletter')) +@hasUtm('source', 'newsletter')
Special Content for Newsletter-Subscriber.
-@endif +@endhasUtm ``` --- @@ -132,13 +132,13 @@ Simply use: - `has_not_utm('source|medium|campaign|term|content', 'optional-value')` ```blade - @hasUtm('term') -You have any term.
- @endhasUtm - - @hasUtm('source', 'corporate-partner') +@hasUtm('source', 'corporate-partner')You have any term.
+@endhasNotUtm ``` ```php