@if($shortcode->subtitle)
{!! BaseHelper::clean($shortcode->subtitle) !!}
@endif @if($shortcode->title)

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

@endif
@foreach($projects->loadMissing('metadata') as $project)
@if ($project->image)
{{ RvMedia::image($project->image, $project->name, attributes: ['class' => 'w-100']) }}
@endif
$project->image, 'col-lg-12' => ! $project->image])>

{!! BaseHelper::clean($project->name) !!}

@if($project->description)

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

@endif
  • {{ __('Project Info') }}
  • @if($project->categories->isNotEmpty())
  • {{ __('Category') }}

    {{ $project->categories->map(fn ($item) => $item->name)->join(', ') }}

  • @endif @if ($project->client)
  • {{ __('Client') }}

    {{ $project->client }}

  • @endif @if ($project->start_date)
  • {{ __('Start Date') }}

    {{ Theme::formatDate($project->start_date) }}

  • @endif
@endforeach
@if($projects->count() > 1)
@endif
@if($shortcode->background_image) {{ RvMedia::image($shortcode->background_image, $shortcode->title, attributes: ['class' => 'position-absolute top-0 start-0 z-0']) }} @endif