@extends('layouts.app') @section('content') @php $offset = ($opportunity_areas->currentPage() - 1) * $opportunity_areas->perPage(); @endphp

{{ $customer->name }}

@can('write_order') Crear area de oportunidad @endcan
@can('write_order') {{ __('buttons.report') }} @endcan
@include('messages.alert')
@csrf @foreach ($opportunity_areas as $index => $opportunity_area) @endforeach
# Fecha
Área Área de oportunidad Recomendación Sgto Status {{ __('buttons.actions') }}
{{ $offset + $index + 1 }} {{ $opportunity_area->date }} {{ $opportunity_area->applicationArea->name }} {{ $opportunity_area->opportunity }} {{ $opportunity_area->recommendation }} {{ $opportunity_area->getTracing() }} {{ $opportunity_area->getStatus() }} {{ __('buttons.show') }} @can('write_order') {{ __('buttons.edit') }} {{ __('buttons.delete') }} @endcan
@endsection