1
I’m new to the Laravel and I have a little problem
$profile_id = Profile::where("customer_id",$data["customer_id"])->where('is_default', 1)->select('id')->first()->get();
from this consultation, as I take the field id
?
I tried to
$profile_id->id
but it made a mistake
Undefined Property: Illuminate Database Eloquent Collection::$id
Thank you for the theoretical reply!
– Silvio Andorinha