How can I break to a new line using laravel tinker?
So instead of:
$users = User::all(); foreach($users as $user) {echo $user->email;}
I want to be able to write it as follows:
$users = User::all();
foreach($users as $user) {
echo $user->email;
}
Is it possible?