@extends('panel.layout.app', ['disable_tblr' => true]) @section('title', __('Marketplace')) @section('titlebar_actions_before') @php $filters = ['All', 'Installed', 'Free', 'Paid']; @endphp
    @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') {{-- TODO: This banner section should be made in accordance with the design. --}} @if (is_array($banners) && $banners)
{{ $banners[0]['banner_title'] ?? '' }}

{{ $banners[0]['banner_description'] ?? '' }}

@foreach ($banners as $banner) $loop->first, ]) :class="{ 'active': currentBanner === {{ $loop->index }} }" @click="currentBanner = {{ $loop->index }}" > @endforeach
{{ $banners[0]['banner_title'] ?? '' }}
@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')