@extends('layout') @section('title', get_label('plugins', 'Plugins')) @section('content')
@forelse($plugins as $plugin) @empty @endforelse
Name Version Status Description Actions
{{ $plugin['name'] ?? 'Unknown' }} {{ $plugin['version'] ?? 'N/A' }} {{ $plugin['enabled'] ? 'Enabled' : 'Disabled' }} {{ $plugin['description'] ?? 'N/A' }} @if($plugin['enabled']) @else @endif
No plugins installed.
@endsection