@forelse($apps as $app)
@php
$platform = $app->getPlatformInstance();
$cardView = $platform ? $platform->getAppCardView() : null;
@endphp
@if($cardView)
@include($cardView, ['app' => $app])
@else
{{ $app->name }}
{{ __('user.platform_plugin_not_found') }}
@endif
@empty
@if($search)
{{ __('user.no_apps_matching', ['search' => $search]) }}
@else
{{ __('user.no_apps_yet') }}
@endif
@endforelse
@if($apps->hasPages())