{{-- New-Unity ERP | app/Modules/Sales/Resources/Views/opportunities/report.blade.php | v1.0 | 20/07/2026 --}} {{-- v1.0 — Reporte de actividades del vendedor. --}} @extends('layouts.vertical', ['pageTitle' => __('opportunities.seller_report')]) @section('page-title')
| {{ __('opportunities.col_date') }} | {{ __('opportunities.col_type') }} | {{ __('opportunities.col_title') }} | {{ __('opportunities.col_opportunity') }} | {{ __('opportunities.col_status') }} |
|---|---|---|---|---|
| {{ $act->scheduled_at->format('d/m/Y H:i') }} | {{ $act->type_label }} | {{ $act->title }} | {{ $act->opportunity?->opportunity_number ?? '—' }} | @php $sc = match($act->status) { 'completed'=>'success','overdue'=>'danger','cancelled'=>'secondary',default=>'warning' }; @endphp {{ ucfirst($act->status) }} |
| {{ __('opportunities.no_activities_period') }} | ||||