Skip to content
This repository was archived by the owner on Jan 3, 2023. It is now read-only.

Commit 5989ef5

Browse files
committed
updates
1 parent 92618e7 commit 5989ef5

File tree

4 files changed

+8
-7
lines changed

4 files changed

+8
-7
lines changed

.gitignore

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1,2 @@
1-
.DS_Store
1+
.DS_Store
2+
.history

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -28,9 +28,7 @@ Create menus & pages that support (multiLocale "title, url, body, ...", nesting,
2828
- install JS dependencies
2929

3030
```bash
31-
yarn add vue axios vue-tippy@v1 vuedraggable vue-notif vue-multi-ref vue-awesome@v2 list.js
32-
# or
33-
npm install vue axios vue-tippy@v1 vuedraggable vue-notif vue-multi-ref vue-awesome@v2 list.js --save
31+
yarn add vue axios vue-tippy@v2 vuedraggable vue-notif vue-multi-ref vue-awesome@v2 list.js
3432
```
3533

3634
- add this one liner to your main js file and run `npm run watch` to compile your `js/css` files.
@@ -51,6 +49,7 @@ Create menus & pages that support (multiLocale "title, url, body, ...", nesting,
5149
<br>
5250

5351
## Config
52+
5453
**config/simpleMenu.php**
5554

5655
```php
@@ -157,6 +156,7 @@ return [
157156
<br>
158157
159158
## Usage
159+
160160
> [Demo](https://github.com/ctf0/demos/tree/simple-menu)<br>
161161
> [Usage](https://github.com/ctf0/simple-menu/wiki/Usage)<br>
162162
> [Views](https://github.com/ctf0/SimpleMenu/wiki/Crud-Views)

composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
],
2121
"require": {
2222
"php": "~7.0",
23-
"illuminate/support": "^5.4 || ^6.0",
23+
"illuminate/support": "^5.4 || ^6.0 || ^7.0",
2424
"gazsp/baum": "*",
2525
"mcamara/laravel-localization": "*",
2626
"spatie/laravel-permission": "*",

src/resources/views/template-example.blade.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<meta http-equiv="x-ua-compatible" content="ie=edge">
66
<meta name="viewport" content="width=device-width, initial-scale=1">
77
<meta name="csrf-token" content="{{ csrf_token() }}">
8-
<meta name="description" content="{{ str_limit($desc, 50) }}">
8+
<meta name="description" content="{{ Str::limit($desc, 50) }}">
99
<meta name="keywords" content="{{ $meta }}">
1010
<title>{{ $title }}</title>
1111

@@ -31,4 +31,4 @@
3131
</div>
3232
</div>
3333
</body>
34-
</html>
34+
</html>

0 commit comments

Comments
 (0)