@extends('admin.layouts.index', ['header' => true, 'nav' => true, 'demo' => true]) {{-- Custom CSS --}} @section('css') @endsection @section('content')
{{-- Failed --}} @if (Session::has('failed')) @endif {{-- Success --}} @if (Session::has('success')) @endif
{{-- Themes --}} @if (count($themes) > 0) @foreach ($themes as $theme)
@php $string = $theme['theme_name']; $words = explode(' ', $string); $themeName = implode(' ', array_slice($words, 0, 3)); if (count($words) > 3) { $themeName = implode(' ', array_slice($words, 0, 3)) . ' ...'; } @endphp
{{ __($themeName) }}
{{ __($theme['theme_description'] == "WhatsApp Store" ? "Store" : $theme['theme_description']) }}
{{ $theme['business_cards_count'] }}
@endforeach @else

{{ __('No results found') }}

{{ __('Try adjusting your search or filter to find what you\'re looking for.') }}

@endif
@if (request()->has('query')) {{ $themes->appends(['disabled-themes' => strtolower(request()->query('disabled-themes')), 'query' => strtolower(request()->query('query'))])->links() }} @else {{ $themes->links() }} @endif
@include('admin.includes.footer')
{{-- Update status --}} {{-- Custom JS --}} @section('scripts') @endsection @endsection