Builder not work on mobile
Back
@php
$arr_blocks = [];
foreach ($blocks as $item) {
$arr_temp = [];
$arr_temp['id'] = $item->id;
$arr_temp['thumb'] = URL::to('/').'/storage/thumb_blocks/'.$item->thumb;
$arr_temp['name'] = $item->name;
$arr_temp['category'] = $item->category->name;
$arr_temp['content'] = $item->getReplaceVarBlockContent();
array_push($arr_blocks, $arr_temp);
}
@endphp