@foreach($treatments as $treatment)
<div class="col-lg-4 col-sm-6 mb-md-4">
<a href="{{ route('treatment.show', $treatment->Slug) }}" class="procedure_box d-block">
<div class="card_header">
<h3>{{ $treatment->TreatmentName }}</h3>
</div>
<p>{{ \Illuminate\Support\Str::limit($treatment->ShortDescription, 90, '...') }}</p>
</a>
</div>
@endforeach