@extends('admin.layouts.master') @section('title', 'Addon Manager') @section('maincontent') @include('admin.layouts.topbar',$data)
@if ($errors->any()) @endif
{{ __('Addon Manager') }}
@foreach($modules as $module) @php $path = base_path().'/Modules/'.$module.'/'.'module.json'; $json = json_decode(file_get_contents($path), true); @endphp @endforeach
# {{ __('Addon') }} {{ __('Version') }} {{ __('Status') }} {{ __('Action') }}
{{ $i }} {{$json['name']}} @if(isset($json['version'])) {{$json['version']}} @else - @endif @can('addon.delete') @endcan


@endsection @section('script') @endsection