@extends('frontend.layouts.app') @section('content') @forelse($resoures as $rec) @php // Remove HTML tags from the title and then limit the words $cleanedTitle = strip_tags($rec->title); $titleText = $cleanedTitle ? implode(' ', array_slice(explode(' ', $cleanedTitle), 0, 10)) . (str_word_count($cleanedTitle) > 10 ? '...' : '') : ''; // For description, do the same $cleanedDescription = strip_tags($rec->description); $titleDes = $cleanedDescription ? implode(' ', array_slice(explode(' ', $cleanedDescription), 0, 25)) . (str_word_count($cleanedDescription) > 15 ? '...' : '') : ''; @endphp {{$titleText}} {{ $titleDes }} @empty No Flashcard Found @endforelse @endsection @push('js') @endpush
{{ $titleDes }}