diff --git a/README.md b/README.md index 56afacc..f78e8af 100644 --- a/README.md +++ b/README.md @@ -19,7 +19,7 @@ composer require appstract/laravel-blade-directives ### @istrue -Only show when ```$variable``` isset and true. +Only show when `$variable` isset and true. ```blade @istrue($variable) @@ -35,7 +35,7 @@ Or when you would like to quickly echo ### @isfalse -Same as ```@istrue``` but checks for isset and false. +Same as `@istrue` but checks for isset and false. ```blade @isfalse($variable) @@ -45,7 +45,7 @@ Same as ```@istrue``` but checks for isset and false. ### @isnull -Only show when ```$variable``` is null. +Only show when `$variable` is null. ```blade @isnull($variable) @@ -55,7 +55,7 @@ Only show when ```$variable``` is null. ### @isnotnull -Same as ```@isnull``` but one shows when ```$variable``` is not null. +Same as `@isnull` but one shows when `$variable` is not null. ```blade @isnotnull($variable) @@ -74,10 +74,12 @@ Same as ```@isnull``` but one shows when ```$variable``` is not null. ### @mix Create a HTML element to your Laravel-Mix css or js. + ```blade @mix('/css/app.css') @mix('/js/app.js') ``` + Output: ```blade @@ -87,7 +89,7 @@ Output: ### @style -Create a ```