@if($emp->image_url != null)
@else
@endif
{{ $emp->names." ".$emp->surnames}} {{$emp->employee_id}}
Cargo:
@if($emp->charge()->first() != null){{$emp->charge()->first()->description}}@endif
@php
if($emp->tags != null){
$tagsList = explode('_', $emp->tags);
foreach($tagsList as $value){
$tag = $tags->where('id', $value)->first();
if($tag != null){
@endphp
@php
echo $tag->initial;
@endphp
@php
}
}
}
@endphp
@if($emp->category()->first() != null){{$emp->category()->first()->name}}@endif
Desde
{{ $resource->start_date->format('d-m-Y') }}