$vegetables = DB::select("select a.id, a.created_at, a.updated_at,a.storeid, a.itemno, a.type, a.vegie from stores a, storenames b where a.storeid = b.storeid");
return view('stores', ['vegetables' => $vegetables]);
Я использовал приведенный выше код для запроса БД и получил следующую ошибку на странице просмотра:
@foreach($vegetables as $vegetable)
<tbody>
<tr>
<th scope="row">{{ $vegetable['storeid'] }}</th>
<td>{{ $vegetable['itemno'] }}</td>
<td>{{ $vegetable['type'] }}</td>
<td>{{ $vegetable['vegie'] }}</td>
</tr>
@endforeach
</tbody>
Facade \ Ignition \ Exceptions \ ViewException Невозможно использовать объект типа stdClass как массив
Любая помощь будет принята с благодарностью.