@extends('layouts.new_theme') @section('content')

{{ __('Add-on') }}

{{ __('List of Add-ons') }}

{{__('Total number of add-ons')}}: {{ count($addon) }}

@include('common.demo') @include('common.admin') @include('common.errors')

{{ __('List of Add-ons') }}

@if (!count($addon))

{{ __('No add-ons added yet under') }} !!

{{ __('Sorry we cant find any data, to get rid of this message, make at least 1 entry') }}.

{{ __('Create new One') }}
@else
@foreach ($addon as $add) @endforeach
{{ __('Name') }} {{ __('Version') }} {{ __('Status') }} {{__('Settings')}}
{{ $add->name }} {{ $add->version }} @if ($add->status == 1) {{ __('Active') }} @else {{ __('Inactive') }} @endif @if (env('APP_ENV') != 'demo')
@method('DELETE') @csrf
@endif

@endif
@endsection