(Facade\\Ignition\\Exceptions\\ViewException(code: 0): Trying to get property 'id' of non-object (View: /home/runcloud/webapps/participes/resources/views/objective/goal/view.blade.php) at /home/runcloud/webapps/participes/resources/views/objective/goal/view.blade.php:94)
[stacktrace]
#0 /home/runcloud/webapps/participes/resources/views/objective/goal/view.blade.php(94): Illuminate\\Foundation\\Bootstrap\\HandleExceptions->handleError()
For example, this line
<span class="text-muted">Fecha de completado: @justdate($milestone->completed) - <a href="{{route('reports.index',['reportId' => $milestone->report->id])}}">Ver el reporte<i class="fas fa-arrow-right fa-fw"></i></a></span>
$milestone->report->id just fails because there is no report for the milestone (deleted_at is not null)
Still need to think that happens, some thoughts:
Un "Hito" de una meta se declara completado y se asocia un "Reporte" anunciando que se completa.
Lo que paso es que borraron los reportes donde se declara que el hito se completo.
El problema surge porque intentaba crearse el link para ir al reporte, pero como se elimina, entonces no hay reporte asociado a la completitud del hito. Por lo que da error,
La pregunta es.. que pasaria si eso se vuelve a repetir? Que borren el reporte de un hito que se declaro completado. Significa que el hito pasaria a "no completado" por las dudas? O dejamos que quede completado, sin reporte asociado?
For example, this line
$milestone->report->id
just fails because there is no report for the milestone (deleted_at
is not null)Still need to think that happens, some thoughts: