@if($company->infoGeneral->logo)
 }})
@endif
{{ $company->infoGeneral->city->name ?? 'N/A' }}
{{ $company->company ?? 'N/A' }}
{{ Str::limit($company->infoGeneral->détails ?? 'N/A', 100) }}
@if(isset($company->expertise))
@php
$expertises = [];
foreach ($company->expertise->getAttributes() as $key => $value) {
if ($value && !in_array($key, ['id', 'user_id', 'company_id', 'created_at', 'updated_at'])) {
$expertises[] = __('expertise.' . $key);
}
}
@endphp
{{ implode(', ', $expertises) }}
@endif