@if($shortcode->title || $shortcode->subtitle || $shortcode->description)
@if($shortcode->subtitle)
dots {{ $shortcode->subtitle }}
@endif @if($shortcode->title)

{!! BaseHelper::clean($shortcode->title) !!}

@endif @if($shortcode->description)

{!! BaseHelper::clean($shortcode->description) !!}

@endif
@endif
@foreach($projects as $project)
{{ RvMedia::image($project->image, $project->name, 'vertical_thumb', attributes: ['class' => 'img-fluid w-100']) }}
@if($project->client)

{{ $project->client }}

@endif
{{ $project->name }}
@if($project->description)

{!! Str::limit(BaseHelper::clean($project->description), 75) !!}

@endif
@endforeach
@if($projects instanceof \Illuminate\Pagination\LengthAwarePaginator && $projects->hasPages())
{{ $projects->links(Theme::getThemeNamespace('partials.pagination')) }}
@endif