Skip to content
This repository was archived by the owner on Feb 9, 2021. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 4 additions & 2 deletions app/Modules/Accounts/Blade/index.blade.php
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
@extends('dashboard::frame')

<?php use App\Model\AccessLog; ?>
<?php ?>

@section('title')
Account Management
Expand Down Expand Up @@ -47,7 +47,9 @@
<div class="console">
<ul class="list-unstyled">
<li><a href="{{ route('admin.accounts.edit', $account->id) }}">Edit</a></li>
<li><a href="{{ route('admin.accounts.destroy', $account->id) }}" data-type="alert" data-confirm="Are you sure you want to remove this account?" data-method="delete">Remove</a></li>
<li>
<button href="{{ route('admin.accounts.destroy', $account->id) }}" data-type="deletion" data-confirm="Are you sure you want to remove this account?">Remove</button>
</li>
</ul>
</div>

Expand Down
4 changes: 3 additions & 1 deletion app/Modules/Articles/Blade/index.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,9 @@
<ul class="list-unstyled">
<li><a href="{{ route('admin.articles.edit', $article->slug) }}">Edit</a></li>
@if ($article->isPublished()) <li><a href="{{ url($article->route()) }}">View</a></li> @endif
<li><a href="{{ route('admin.articles.destroy', $article->slug) }}" data-type="alert" data-confirm="Are you sure you want to delete this article?" data-method="delete">Delete</a></li>
<li>
<button href="{{ route('admin.articles.destroy', $article->slug) }}" data-type="deletion" data-confirm="Are you sure you want to delete this article?">Delete</button>
</li>
</ul>
</div>

Expand Down
2 changes: 1 addition & 1 deletion app/Modules/Navigation/Blade/index.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@
<div class="console">
<ul class="list-unstyled">
<li><a href="{{ route('admin.navigation.edit', ['name' => $menu]) }}">Edit</a></li>
<li><a href="{{ route('admin.navigation.destroy', ['menu' => $menu->id]) }}" data-type="alert" data-confirm="Are you sure you want to remove this menu?" data-method="delete">Remove</a></li>
<li><button href="{{ route('admin.navigation.destroy', ['menu' => $menu->id]) }}" data-type="deletion" data-confirm="Are you sure you want to remove this menu?">Remove</button></li>
</ul>
</div>

Expand Down
2 changes: 1 addition & 1 deletion app/Modules/Pages/Blade/index.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@
<ul class="list-unstyled">
<li><a href="{{ route('admin.pages.edit', $page->slug) }}">Edit</a></li>
<li><a href="{{ url($page->route()) }}">View</a></li>
<li><a href="{{ route('admin.pages.destroy', $page->slug) }}" data-type="alert" data-confirm="Are you sure you want to delete this page?" data-method="delete">Delete</a></li>
<li><button href="{{ route('admin.pages.destroy', $page->slug) }}" data-type="deletion" data-confirm="Are you sure you want to delete this page?">Delete</button></li>
</ul>
</div>

Expand Down
4 changes: 3 additions & 1 deletion app/Modules/Redirects/Blade/index.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,9 @@
<div class="console">
<ul class="list-unstyled">
<li><a href="{{ route('admin.redirects.edit', ['name' => $redirect->id]) }}">Edit</a></li>
<li><a href="{{ route('admin.redirects.destroy', ['menu' => $redirect->id]) }}" data-type="alert" data-confirm="Are you sure you want to remove this menu?" data-method="delete">Remove</a></li>
<li>
<button href="{{ route('admin.redirects.destroy', ['menu' => $redirect->id]) }}" data-type="deletion" data-confirm="Are you sure you want to remove this menu?">Remove</button>
</li>
</ul>
</div>

Expand Down
16,473 changes: 16,458 additions & 15 deletions public/assets/backend.css

Large diffs are not rendered by default.

97,154 changes: 97,153 additions & 1 deletion public/assets/backend.js

Large diffs are not rendered by default.

12,651 changes: 12,645 additions & 6 deletions public/assets/frontend.css

Large diffs are not rendered by default.

47,622 changes: 47,621 additions & 1 deletion public/assets/frontend.js

Large diffs are not rendered by default.

Loading