<td> {{ $item->salary }} </td> @if($item['advance']['advance_salary'] == NULL ) <p>No Advance</p> @else {{ $item['advance']['advance_salary'] }} @endif </td> <td> @php $amount = $item->salary - $item['advance']['advance_salary']; @endphp <strong style="color: #fff;"> {{ round($amount) }} </strong> </td>
Tentative d'accès au décalage du tableau sur une valeur de type null en exécutant ces commandes
composer update php artisan cache:clear <br> php artisan config:clear<br> php artisan view:clear
Dans certains endroits, vous le souhaitez
$item
是一个对象 ($item->salary
),在其他地方,您将$item
视为一个数组 ($item['advance']['advance_salary']
). Corrigez-les d’abord, vous pouvez corriger les erreurs au cours du processus.