@extends('panel.layout.app', ['disable_tblr' => true])
@section('title', __('Marketplace'))
@section('titlebar_actions_before')
@php
$filters = ['All', 'Installed', 'Free', 'Paid'];
@endphp
@lang('Filter')
@foreach ($filters as $filter)
{{ __($filter) }}
@endforeach
@endsection
@section('titlebar_actions')
{{ __('Manage Addons') }}
{{ __('Browse Add-ons') }}
{{ __('Cart') }}
{{ count(is_array($cart) ? $cart : []) }}
@endsection
@section('content')
@include('panel.admin.market.components.marketplace-filter')
@if (is_array($banners) && $banners)
{{ __('Editor Picks') }}
{!! $banners[0]['banner_title'] ?? '' !!}
{!! $banners[0]['banner_description'] ?? '' !!}
@if (count($banners) > 1)
@endif
@endif
@foreach ($items as $item)
{{-- TODO: {{ $item['is_featured'] ? 'border-red-500': '' --- If is featured true, a border gradient must be added. --}}
@include('default.panel.admin.marketplace.particles.index-item')
@endforeach
@endsection
@include('panel.admin.marketplace.script')