@extends('user.layouts.index', ['header' => true, 'nav' => true, 'demo' => true, 'settings' => $settings]) {{-- Custom CSS --}} @section('css') {{-- Cropper --}} @endsection @php $themeIds = $themes->pluck('theme_id')->toArray(); // Extract only theme_id values into an array $defaultImage = ''; $themeId = ''; if (in_array($business_card->theme_id, $themeIds)) { // Find the theme object to get its thumbnail $theme = $themes->firstWhere('theme_id', $business_card->theme_id); $defaultImage = asset('img/vCards/' . $theme->theme_thumbnail); $themeId = $business_card->theme_id; } else { $defaultImage = asset('img/vCards/personal-gray.png'); $themeId = '588969111021'; } @endphp @section('content')