room()
— нужно записывать непосредственно в контроллере.global $wpdb;
$names = $wpdb->get_var("SELECT * FROM `название твоей таблицы`'");
<label for="names">Выбрать имя</label>
<select name="names">
<option value="">--Выбрать имя--</option>
foreach($names as $name){
<option value="<? $name->id"><? $name->name ?></option>
}
</select>
.product001 img{
width: 200px; // тут можете поиграть с шириной самой картинки
height: auto; // высота устанавливается auto, для того чтобы не было проблем с адаптацией картинки. Но можете принудительно задать высоту в "px" как с шириной, или 100%.
}
$(document).on('#addToCard', function(e) {
setTimeout(function() {
var target = $('#addToCart'); // id кнопки корзины
// Ниже свойства для модалки
target.magnificPopup({
closeOnBgClick: true,
showCloseBtn: true,
items: {
src: "#card_popup",
type: 'inline'
}
}).magnificPopup('open');
}, 500);
e.preventDefault();
});
// Классы кнопок для открытия модальных окон, которые нужно отображать.
$('.popup_link, .popup_login').magnificPopup();
// Одна кнопка закрытия для всех модалок.
$('.close_popup').click(function() {
$.magnificPopup.close();
})
<x-sidebar brandcategory="{{ $brandcategory }}"/>
class Sidebar extends Component
{
public $brandcategory;
/**
* Create a new component instance.
*
* @return void
*/
public function __construct($brandcategory)
{
$this->brandcategory = $brandcategory;
}
/**
* Get the view / contents that represent the component.
*
* @return \Illuminate\Contracts\View\View|\Closure|string
*/
public function render()
{
return view('components.sidebar');
}
}
$brandcategory = Category::with('brand_category')->where('brand_id', '=', $brand->id)->get();