|
@ -6,13 +6,13 @@ |
|
|
<div class="section-title"> |
|
|
<div class="section-title"> |
|
|
{{ __('app.apps.app_list') }} |
|
|
{{ __('app.apps.app_list') }} |
|
|
@if( isset($trash) && $trash->count() > 0 ) |
|
|
@if( isset($trash) && $trash->count() > 0 ) |
|
|
<a class="trashed" href="{{ route('items.index', ['trash' => true]) }}">{{ __('app.apps.view_trash') }} ({{ $trash->count() }})</a> |
|
|
<a class="trashed" href="{{ route('items.index', ['trash' => true], false) }}">{{ __('app.apps.view_trash') }} ({{ $trash->count() }})</a> |
|
|
@endif |
|
|
@endif |
|
|
|
|
|
|
|
|
</div> |
|
|
</div> |
|
|
<div class="module-actions"> |
|
|
<div class="module-actions"> |
|
|
<a href="{{ route('items.create') }}" title="" class="button"><i class="fa fa-plus"></i><span>{{ __('app.buttons.add') }}</span></a> |
|
|
<a href="{{ route('items.create', [], false) }}" title="" class="button"><i class="fa fa-plus"></i><span>{{ __('app.buttons.add') }}</span></a> |
|
|
<a href="{{ route('dash') }}" class="button"><i class="fa fa-ban"></i><span>{{ __('app.buttons.cancel') }}</span></a> |
|
|
<a href="{{ route('dash', [], false) }}" class="button"><i class="fa fa-ban"></i><span>{{ __('app.buttons.cancel') }}</span></a> |
|
|
</div> |
|
|
</div> |
|
|
</header> |
|
|
</header> |
|
|
|
|
|
|
|
@ -31,7 +31,7 @@ |
|
|
<tr> |
|
|
<tr> |
|
|
<td>{{ $app->title }}</td> |
|
|
<td>{{ $app->title }}</td> |
|
|
<td><a href="{{ $app->url }}">{{ $app->link }}</a></td> |
|
|
<td><a href="{{ $app->url }}">{{ $app->link }}</a></td> |
|
|
<td class="text-center"><a{{ $app->target }} href="{!! route('items.edit', $app->id) !!}" title="{{ __('app.settings.edit') }} {!! $app->title !!}"><i class="fas fa-edit"></i></a></td> |
|
|
<td class="text-center"><a{{ $app->target }} href="{!! route('items.edit', [$app->id], false) !!}" title="{{ __('app.settings.edit') }} {!! $app->title !!}"><i class="fas fa-edit"></i></a></td> |
|
|
<td class="text-center"> |
|
|
<td class="text-center"> |
|
|
{!! Form::open(['method' => 'DELETE','route' => ['items.destroy', $app->id],'style'=>'display:inline']) !!} |
|
|
{!! Form::open(['method' => 'DELETE','route' => ['items.destroy', $app->id],'style'=>'display:inline']) !!} |
|
|
<button class="link" type="submit"><i class="fa fa-trash-alt"></i></button> |
|
|
<button class="link" type="submit"><i class="fa fa-trash-alt"></i></button> |
|
|