@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