Mysql
 sql >> Database >  >> RDS >> Mysql

Laravel 5 UnexpectedValueException in risposta alla query a causa dell'uso dei dati POINT

Penso che dovrei fare più domande prima di pubblicare questa risposta, ma penso che tu stia facendo le cose nell'ordine sbagliato.

public function rentals($id)
{
    // Retrieve all rentals within a region and the locations spatial data
    $rentals = DB::table('rentals')
                 ->join('regions', 'rentals.region_id', '=', 'regions.id')
                 ->join('rental_locations', 'rentals.rental_location_id', '=', 'rental_locations.id')
                 ->select('*')
                 ->where('rentals.region_id', '=', $id)
                 ->groupBy('rental_location_id')
                 ->get();


    return collect($rentals); // or return $rentals
/* Not necessary
    // Create a collection from the array of query results
    $rentals = collect($rentals);


    // Laravel is set up to return collections as json when directly returned
    return $rentals;
*/
}

Quindi devi aggiungere il tuo groupBy nella query stessa perché questa è un'azione di query che il tuo SQL dovrebbe eseguire. L'altra parte è che quando lo converti in una raccolta (che non è necessaria al 100%) puoi semplicemente restituirlo. Laravel gestisce il JSON in modo nativo.