@if($recentServicesFromFollowed->isEmpty())

Aucune activité récente

Suivez des prestataires pour voir leurs actus

Explorer
@else
@foreach($recentServicesFromFollowed as $service)
@if($service->prestataire->photo){{ $service->prestataire->user->name ?? 'Prestataire' }} @elseif($service->prestataire->user?->avatar){{ $service->prestataire->user->name ?? 'Prestataire' }} @else
{{ ($service->prestataire->user?->name) ? substr($service->prestataire->user->name, 0, 1) : 'P' }}
@endif
{{ $service->prestataire->user->name ?? 'Prestataire' }}nouveau service{{ $service->created_at->diffForHumans() }}
@if($service->image){{ $service->title }}@endif

{{ $service->title }}

{{ Str::limit($service->description, 80) }}

@if($service->price){{ number_format($service->price, 2) }} €@endif
@endforeach
@endif