Skip to content

Commit

Permalink
Remove components from the pages itself
Browse files Browse the repository at this point in the history
  • Loading branch information
nWidart committed Sep 15, 2017
1 parent 5500831 commit 913f98d
Show file tree
Hide file tree
Showing 3 changed files with 0 additions and 25 deletions.
7 changes: 0 additions & 7 deletions Modules/Page/Resources/views/admin/create.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -23,9 +23,6 @@
@endpush

@section('content')
<page-form :locales="{{ json_encode(LaravelLocalization::getSupportedLocales()) }}"
:translations="{{ json_encode(['page' => trans('page::pages'), 'core' => trans('core::core')]) }}"
route="{{ route('api.page.page.store') }}"></page-form>
@stop

@section('footer')
Expand All @@ -46,10 +43,6 @@
{ key: 'b', route: "<?= route('admin.page.page.index') ?>" }
]
});
$('input[type="checkbox"].flat-blue, input[type="radio"].flat-blue').iCheck({
checkboxClass: 'icheckbox_flat-blue',
radioClass: 'iradio_flat-blue'
});
});
</script>
@endpush
9 changes: 0 additions & 9 deletions Modules/Page/Resources/views/admin/edit.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -23,11 +23,6 @@
@endpush

@section('content')
<page-form :locales="{{ json_encode(LaravelLocalization::getSupportedLocales()) }}"
:translations="{{ json_encode(['page' => trans('page::pages'), 'core' => trans('core::core')]) }}"
:page-id="{{ $page->id }}"
route="{{ route('api.page.page.update', $page->id) }}">
</page-form>
@stop

@section('footer')
Expand All @@ -48,10 +43,6 @@
{ key: 'b', route: "<?= route('admin.page.page.index') ?>" }
]
});
$('input[type="checkbox"].flat-blue, input[type="radio"].flat-blue').iCheck({
checkboxClass: 'icheckbox_flat-blue',
radioClass: 'iradio_flat-blue'
});
});
</script>
@endpush
9 changes: 0 additions & 9 deletions Modules/Page/Resources/views/admin/index.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -11,15 +11,6 @@
@stop

@section('content')
<div class="row">
<div class="col-xs-12">
<div class="box box-primary">
<div class="box-body">
<page-table :translations="{{ json_encode(['page' => trans('page::pages'), 'core' => trans('core::core')]) }}"></page-table>
</div>
</div>
</div>
</div>
@stop

@section('footer')
Expand Down

0 comments on commit 913f98d

Please sign in to comment.