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

Commit 1bca875

Browse files
committed
...
1 parent 403ee14 commit 1bca875

17 files changed

+25
-26
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@ return [
8989
*
9090
* do you want to clear its parent and make it a root ?
9191
*/
92-
'clearPartialyNestedParent'=> true,
92+
'clearPartialyNestedParent' => true,
9393

9494
/*
9595
* when removing a root page from a menu, ex.
@@ -121,7 +121,7 @@ return [
121121
/*
122122
* css farmework for admin pages
123123
*/
124-
'framework'=> env('MIX_SM_FRAMEWORK'),
124+
'framework' => env('MIX_SM_FRAMEWORK'),
125125
];
126126
```
127127

src/resources/views/admin/bulma/menus/create.blade.php

100755100644
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
@extends("SimpleMenu::admin.$css_fw.shared")
2-
@section('title'){{ 'Create new Menu' }}@endsection
2+
@section('title', 'Create new Menu')
33

44
@section('sub')
55
<h3 class="title">

src/resources/views/admin/bulma/menus/edit.blade.php

100755100644
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
@extends("SimpleMenu::admin.$css_fw.shared")
2-
@section('title'){{ "Edit '$menu->name'" }}@endsection
2+
@section('title', "Edit '$menu->name'")
33

44
@section('sub')
55
<h3 class="title">

src/resources/views/admin/bulma/menus/index.blade.php

100755100644
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
@extends("SimpleMenu::admin.$css_fw.shared")
2-
@section('title'){{ 'Menus' }}@endsection
2+
@section('title', 'Menus')
33

44
@section('sub')
55

src/resources/views/admin/bulma/pages/create.blade.php

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
@extends("SimpleMenu::admin.$css_fw.shared")
2-
@section('title'){{ 'Create new Page' }}@endsection
2+
@section('title', 'Create new Page')
33

44
@php
55
$locales = SimpleMenu::AppLocales();
@@ -15,10 +15,10 @@
1515
<div>
1616
{{ Form::open(['method' => 'POST', 'route' => $crud_prefix.'.pages.store']) }}
1717

18-
{{-- Header --}}
18+
{{-- Control --}}
1919
<div class="columns">
2020
<div class="column is-2">
21-
<h3 class="title">Header</h3>
21+
<h3 class="title">Control</h3>
2222
</div>
2323
<div class="column is-10">
2424
{{-- action --}}
@@ -249,4 +249,4 @@
249249
{{ Form::close() }}
250250
</div>
251251
</page-comp>
252-
@stop
252+
@stop

src/resources/views/admin/bulma/pages/edit.blade.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,10 +17,10 @@
1717
<div>
1818
{{ Form::model($page, ['method' => 'PUT', 'route' => [$crud_prefix.'.pages.update', $page->id]]) }}
1919

20-
{{-- Header --}}
20+
{{-- Control --}}
2121
<div class="columns">
2222
<div class="column is-2">
23-
<h3 class="title">Header</h3>
23+
<h3 class="title">Control</h3>
2424
</div>
2525
<div class="column is-10">
2626
{{-- action --}}
@@ -250,4 +250,4 @@
250250
{{ Form::close() }}
251251
</div>
252252
</page-comp>
253-
@stop
253+
@stop

src/resources/views/admin/bulma/pages/index.blade.php

100755100644
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
@extends("SimpleMenu::admin.$css_fw.shared")
2-
@section('title'){{ 'Pages' }}@endsection
2+
@section('title', 'Pages')
33

44
@section('sub')
55

src/resources/views/admin/bulma/permissions/create.blade.php

100755100644
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
@extends("SimpleMenu::admin.$css_fw.shared")
2-
@section('title'){{ 'Create new Permission' }}@endsection
2+
@section('title', 'Create new Permission')
33

44
@section('sub')
55
<h3 class="title">

src/resources/views/admin/bulma/permissions/edit.blade.php

100755100644
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
@extends("SimpleMenu::admin.$css_fw.shared")
2-
@section('title'){{ "Edit '$permission->name'" }}@endsection
2+
@section('title', "Edit '$permission->name'")
33

44
@section('sub')
55
<h3 class="title">

src/resources/views/admin/bulma/permissions/index.blade.php

100755100644
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
@extends("SimpleMenu::admin.$css_fw.shared")
2-
@section('title'){{ 'Permissions' }}@endsection
2+
@section('title', 'Permissions')
33

44
@section('sub')
55

0 commit comments

Comments
 (0)