@foreach ($whyus as $key => $item)
@php
$words = explode(' ', $item->title); // Split title into words
$lastWord = array_pop($words); // Extract the last word
$titleWithoutLastWord = implode(' ', $words); // Reconstruct the title without the last word
@endphp
{{ $titleWithoutLastWord }}
@if ($lastWord)
{{ $lastWord }}
@endif
@endforeach