@foreach($banners as $banner)
@foreach($banner->descriptions as $description3)
@php
// Retrieve the keywords from the language files
$keyword = __('home.tabweeb'); // Get the keyword for the current language
// Define the replacement string with color
$replacement = '' . $keyword . '';
// Perform the replacement in the description
$description3->title = str_replace($keyword, $replacement, $description3->title);
@endphp
{!! $description3->title !!}