Level 1
It was working fine and now I am getting an error {Trying to get property of 'key_name' non-object } and above the blade file for the view
Be part of JetBrains PHPverse 2026 on June 9 – a free online event bringing PHP devs worldwide together.
<table class="table mb-0">
<thead class="table-light">
<tr>
<th>No</th>
<th> Date</th>
<th>Time</th>
@foreach($dashboards->dashnoardDeviceData as $device)
<th>{{$device->deviceDataKey->key_name}} Value</th>
@endforeach
</tr>
</thead>
@php
$page=1;
if(Request::input('page'))
$page=Request::input('page');
@endphp
@foreach($lists as $key => $list)
<tbody>
<tr>
<td>{{ $page++ }}</td>
<td>{{ dateShow($list->created_at)}}</td>
<td>{{ timeShow($list->created_at) }}</td>
@foreach($dashboards->dashnoardDeviceData as $device)
<th>{{deviceData($list->id,$device->deviceDataKey->id,$dashboards->device_id)}}</th>
@endforeach
</tr>
@endforeach
</table>
</div>
Please or to participate in this conversation.