@extends('layouts.app') @section('content')
@if($enable_auth_admin_controls)
{{ __('app.apps.tag_list') }} @if( isset($trash) && $trash->count() > 0 ) {{ __('app.apps.view_trash') }} ({{ $trash->count() }}) @endif
@if($apps->first()) @foreach($apps as $app) @endforeach @else @endif
{{ __('app.title') }} {{ __('app.url') }} {{ __('app.settings.edit') }} {{ __('app.delete') }}
{{ $app->title }} target }} href="{{ url($app->link) }}">{{ $app->link }} {{ html()->form('DELETE', route('tags.destroy', $app->id))->style('display:inline')->open() }} {{ html()->form()->close() }}
{{ __('app.settings.no_items') }}
@else
{{ __('app.unauthorized_for_form') }}
@endif
@endsection