@extends('admin.app')
@section('content')
{{ Breadcrumbs::render('addons') }}
@if (!blank($addons))
@foreach ($addons as $addon)
{{ \Illuminate\Support\Str::limit($addon->title, 45) }}
{{ $addon->version }}
{{ \Illuminate\Support\Str::limit($addon->description, 100) }}
@can('addons_delete')
{{ __('levels.remove') }}
@endcan
@endforeach
@endif
@endsection
@push('js')
@endpush