{{--
Company Result Item Component
A specialized search result item for displaying companies.
@props
- company: Company - The company model
- animationDelay: int - Animation delay in ms - default: 0
- showDate: bool - Show creation date - default: true
- external: bool - Show external link - default: true
@example
--}}
@props([
'company',
'animationDelay' => 0,
'showDate' => true,
'external' => true,
])
@php
$companyUrl = route('companies.detail', $company);
@endphp
@if($showDate && $company->created_at)
@endif
{{ $slot }}