@extends('admin.layouts.index', ['header' => true, 'nav' => true, 'demo' => true]) @section('content')
{{-- Failed --}} @if (Session::has('failed')) @endif {{-- Success --}} @if (Session::has('success')) @endif {{-- Plugins --}} {{-- check is empty --}} @if (empty($plugins))
Plugins

{{ __('Coming Soon!') }}

{{ __('Plugins are used to add extra functionality to GoBiz.') }}
{{ __('You can install plugins from the GoBiz Plugins Store.') }}

{{-- Notify Me --}}
@else
@foreach ($plugins as $plugin)

{{ __($plugin['name']) }}

{{ __($plugin['description']) }}

@csrf @method('DELETE') @if ( $plugin['plugin_id'] != 'TawkChat' && $plugin['plugin_id'] != 'WhatsappChatButton' && $plugin['plugin_id'] != 'GoogleRecaptcha' && $plugin['plugin_id'] != 'GoogleOAuth' && $plugin['plugin_id'] != 'GoogleAnalytics' && $plugin['plugin_id'] != 'GoogleAdSense' && $plugin['plugin_id'] != 'SMTP' && $plugin['plugin_id'] != 'OrderNFCSystem' && $plugin['plugin_id'] != 'ReferralSystem' && $plugin['plugin_id'] != 'WebTools') @endif
{{-- Version --}}

{{ __('v') }}{{ $plugin['version'] }}

@endforeach
@endif
{{-- Footer --}} @include('admin.includes.footer')
@section('scripts') @endsection @endsection