Support the ongoing development of Laravel.io →
Eloquent Database
Last updated 2 years ago.
0
moderator

If you do a first() instead of a get() you get only one record. On that way $indirizzo will be the object you want or null. So you don't need to do $indirizzo[0];

$indirizzo = DB::table('indirizzoimpiantos')
    ->where('id_impianto', $dettagliimpianto[0]->id)
    ->first();
0

Sign in to participate in this thread!

Eventy

Your banner here too?

Ladis Kumar ladis Joined 20 Mar 2019

Moderators

We'd like to thank these amazing companies for supporting us

Your logo here?

Laravel.io

The Laravel portal for problem solving, knowledge sharing and community building.

© 2024 Laravel.io - All rights reserved.