Instead of doing dd($result)
you can put ->dd()
as a method directly at the end of your Eloquent sentence, or any Collection.
// Instead of$users = User::where('name', 'Taylor')->get();dd($users);// Do this$users = User::where('name', 'Taylor')->get()->dd();