Rufen Sie die Variable aus einer Sammlung Laravel auf
$accessMe = ' is the current number';
$somevariable = collect([1, 2, 3, 4])->map(function($value) use ($accessMe) {
return $value . $accessMe;
}
KingUche