@extends(AdminBaseDashboard::AdminBaseLayout()) @section('title', trans('plugin::plugin.Plugin_title')) @section('content')
@forelse($plugins as $data) @php $detail = json_decode($data->plugin->plugin) @endphp
@if(isset($detail)) {{ $detail->icon }} @else @endif

{{ $detail->name }}

@if(isset($detail->description))

{{ $detail->description }}

@endif

{{ __('plugin::plugin.by')}} : {{ $detail->developer }}

{{ __('plugin::plugin.version')}} : {{ $detail->version }}

@empty
plugin

{{ __('plugin::plugin.No_content_text')}}

@endforelse
@endsection