@if(count($course)>0)
@foreach ($course as $item)
@php
$coursename = $item->name;
$cleanedName = preg_replace('/[^A-Za-z0-9\-]/', '', strtolower($coursename));
// Generate slug
$coursestring = Str::slug($cleanedName);
@endphp
@if($item->mark_bestseller=='Yes')
@endif
@endforeach
@else
@endif