I've maked a breadcrumbs widget and I needed to send breadcrumbs data to layout.
I call one time the widget in layout, and every where I need to render this widget just set $breadcrumbs variable in my view.
My View:
$title = 'User List';
$breadcrumbs[] = ['label' => 'Users', 'url' => $this->url->get('user/index')];
$breadcrumbs[] = $title;
My Layout:
<?= \Multiple\Widget\Breadcrumb::widget([
'items' => $breadcrumbs ?? [],
]) ?>