@extends('panel.layout.app', ['disable_tblr' => true])
@section('title', 'Marketplace')
@section('titlebar_actions')
    
        
            {{ __('Manage Addons') }}
        
        
            
            {{ __('Browse Add-ons') }}
            
        
    
@endsection
@section('content')
    
        
            @include('panel.admin.market.components.marketplace-filter')
            
                @foreach ($extensions as $extension)
                    
                        
                            
                            
                                
                                    
                                        {{ $extension->name }}
                                    
                                    
                                         $extension->installed,
                                            'bg-foreground/10' => !$extension->installed,
                                        ])>
                                        {{ $extension->installed ? __('Installed') : __('Not Installed') }}
                                    
                                 
                                
                                    {{ $extension->description }}
                                
                             
                         
                        
                             $extension->installed == 0,
                                ])
                                variant="outline"
                                hover-variant="danger"
                                size="none"
                            >
                                
                                
                                
                                    {{ __('Uninstall') }}
                                
                            
                             $extension->installed == 1,
                                ])
                                variant="outline"
                                hover-variant="success"
                                size="none"
                            >
                                
                                
                                
                                    {{ __('Install') }}
                                
                            
                        
                        
                            
                                {{ __('View details') }}
                            
                        
                    
                @endforeach
            
 
         
     
@endsection
@push('script')
    
@endpush