@extends('admin.layouts.master') @section('title', 'Addon Manager - Admin') @section('maincontent') @component('components.breadcumb',['fourthactive' => 'active']) @slot('heading') {{ __('Addon Manager') }} @endslot @slot('menu1') {{ __('Addon Manager') }} @endslot @can('addon.create') @slot('button')
@endslot @endcan @endcomponent{{ $error}}
@endforeach# | {{ __('Title') }} | {{ __('Detail') }} | {{ __('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.')}} |