resources/views/auth
. Например: verify-email.blade.php
. Я хотел сгенерировать новые ключи, но мне было сказано использовать имеющиеся.
function pricesWithSale($sale, &$prices) {
foreach($prices as $key => $price) {
$prices[$key] = ($price * $sale) / 100;
}
}
$yaml = Yaml::parse('/path/to/file.yaml');
$data = array_map(function ($field) {
$item = [];
if (isset($field['label'])) {
$item['label'] = $field['label'];
}
if (isset($field['type'])) {
$item['type'] = $field['type'];
}
return $item;
}, $yaml['profileData']['Fields']);