.block1:has(ul > .x:hover) + .block2 {
display: block;
}
return array (
'Accept Cookies' => 'Accept Cookies',
'Cookie info' => 'Please be informed that we use cookies to enhance your user experience.
For a complete overview of all cookies used, please see our
<a href="'.route('frontend.pages.cookies').'" class="hero_side__link">Cookies Policy</a>
and <a href="'.route('frontend.pages.privacy').'" class="hero_side__link">Privacy Policy</a>.',
);
return array (
'Cookie info' => 'Please be informed that we use cookies to enhance your user experience.
For a complete overview of all cookies used, please see our
<a href=":policy_url" class="hero_side__link">Cookies Policy</a>
and <a href=":privacy_url" class="hero_side__link">Privacy Policy</a>.',
);
{{! __('Cookie info', [
'policy_url' => route('frontend.pages.cookies'),
'privacy_url' => route('frontend.pages.privacy'),
]) !}}
.cart-modal-mb { // Это отдельный блок в контексте БЭМ!
top: 0px;
}
.cart-modal {
position: sticky;
top: 80px;
&__empty {
margin: auto;
text-align: center;
}
&__inner {
height: calc( 100vh - 150px);
min-height: 300px;
max-height: 100vh;
display: flex;
flex-direction: column;
.cart-modal-mb & {
height: 100vh;
}
}
&__item-list{
flex: 1 1 auto;
}
}
.cart-modal {
position: sticky;
top: 80px;
&__empty {
margin: auto;
text-align: center;
}
&__inner {
height: calc( 100vh - 150px);
min-height: 300px;
max-height: 100vh;
display: flex;
flex-direction: column;
}
&__item-list{
flex: 1 1 auto;
}
// Модификатор
&_mb {
top: 0px;
}
&_mb &__inner {
height: 100vh;
}
}
[GET] /order/{id} получить информацию о заказе
[POST] /order/{id} создать новый заказ
[PUT] /order/{id} обновить данные в заказе
[DELETE] /order/{id} удалить заказ
[GET] /order/{id}
[POST] /order/{id}/create
[POST] /order/{id}/update
[POST] /order/{id}/delete
будет ли нормальная поддержка этих методов в том же php и формах html?
php://input
$users = User::factory()->count(3)->make();
[core]
excludesfile = C:\\path_to\\.gitignore
git config --global core.excludesFile "%USERPROFILE%\.gitignore"