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

{{ $json->name }}

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

{{ $json->description }}

@endif

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

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

@empty
plugin

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

@endforelse
@endsection