@php use App\Traits\TraitInventory\InventoryDropDownTrait; @endphp
| {{__('obs.id')}} | {{__('obs.cost_center')}} | {{__('obs.title')}} | {{__('obs.schedule_date')}} | {{__('obs.description')}} | {{__('obs.location')}} | {{__('obs.status')}} | {{__('obs.participants')}} | {{__('obs.outcome')}} | {{__('obs.actions')}} |
|---|---|---|---|---|---|---|---|---|---|
| {{ $key+1 }} | {{ $item->getCostCenter->name ?? "" }} | {{ $item->title }} | {{ date('d-m-Y h:i A', strtotime($item->schedule_date)) }} | {!! $item->description !!} | {{ $item->location }} | @foreach (InventoryDropDownTrait::getPresentationStatus() as $status) @if ($item->status == $status->id) {{ $status->name }} @endif @endforeach | {!! $item->participants !!} | {!! $item->outcome !!} |