@extends('admin.layouts.app') @section('container', 'dashboard-container-md') @section('section', d_trans('System')) @section('title', d_trans('Addons')) @section('header_title', d_trans('Addons')) @section('back', route('admin.system.index')) @section('upload', true) @section('content')
@forelse($addons as $addon)
@if ($addon->action) {{ $addon->name }} @else {{ $addon->name }} @endif
@if ($addon->action)
{{ $addon->name }}
@else
{{ $addon->name }}
@endif

{{ d_trans('Version: :version', ['version' => $addon->version]) }}

@if (!$addon->hasNoStatus())
isActive())>
@endif @if ($addon->action) {{ d_trans('Settings') }} @endif
@empty
@include('admin.partials.empty', ['empty_classes' => 'empty-lg'])
@endforelse
@endsection