@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
@php $systemPlugins = [ 'TawkChat', 'WhatsappChatButton', 'WhatsAppChatButton', 'GoogleRecaptcha', 'GoogleOAuth', 'GoogleAnalytics', 'GoogleAdSense', 'MaintenanceMode', 'SMTP', 'SubDomain', 'OrderNFCSystem', 'ReferralSystem', 'CookieConsent', 'WebTools', ]; @endphp {{-- System plugins --}} @foreach ($plugins as $plugin) @if (in_array($plugin['plugin_id'], $systemPlugins))

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

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

v{{ $plugin['version'] }}

{{-- Settings --}}
@endif @endforeach {{-- Custom plugins --}} @foreach ($plugins as $plugin) @if (!in_array($plugin['plugin_id'], $systemPlugins))

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

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

v{{ $plugin['version'] }}

{{-- Delete --}}
@csrf @method('DELETE')
{{-- Settings --}}
@endif @endforeach
@endif
{{-- Footer --}} @include('admin.includes.footer')
@section('scripts') @endsection @endsection