@extends('layouts/layoutMaster') @section('title', __('Addons - Explore')) @section('content')

{{ __('Explore Addons') }}

{{ __('Explore') }}
{{-- Addons Grid --}}
@foreach($addonsInfo as $addon)
{{-- Addon Image --}}
{{ __('Addon Image') }}
{{-- Addon Header --}}
{{ $addon->name }}
{{ $addon->code }} {{-- Description --}}

{{ \Illuminate\Support\Str::limit($addon->description, 80) }}

{{-- Addon Details --}}
  • {{ __('Price') }}: ${{ number_format($addon->price, 2) }}
  • {{ __('Version') }}: {{ $addon->currentVersion }}
  • {{ __('Status') }}: @if($addon->status === 'active') {{ __('Active') }} @else {{ __('Inactive') }} @endif
{{-- Conditional Footer --}}
@endforeach
@endsection