@extends( ($theme =="white") ? 'layouts.white_theme': ( ($theme =="red") ? 'layouts.red_theme': (($theme =="green") ? 'layouts.green_theme': (($theme =="black") ? 'layouts.black_theme': ( ($theme =="blue") ?'layouts.blue_theme': 'layouts.yellow_theme' )))) ) @section('content')

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

@include('common.demo') @include('common.errors')
@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