@extends('admin.layouts.master') @section('title', 'Addon Manager') @section('maincontent') @include('admin.layouts.topbar',$data)
{{ $error}}
@endforeach# | {{ __('Addon') }} | {{ __('Version') }} | {{ __('Status') }} | {{ __('Action') }} | @foreach($modules as $module) @php $path = base_path().'/Modules/'.$module.'/'.'module.json'; $json = json_decode(file_get_contents($path), true); @endphp
---|---|---|---|---|
{{ $i }} | {{$json['name']}} | @if(isset($json['version'])) {{$json['version']}} @else - @endif |
{{ __('Verify') }} |
@can('addon.delete')
@endcan
Delete{{ __('Are You Sure ?')}}{{ __('Do you really want to delete')}} {{ $json['name'] }} ? {{ __('This process cannot be undone.')}} |