Breadcrumbs widget for showing different grid views

Hi , in my view i have this code for showing breadcrumbs report:

echo Breadcrumbs::widget([

'itemTemplate' => "<li><i>{link}</i></li>\n", // template for all links


'links' => [


    ['label' => 'First Report', 'url' => ['report/', 'id' => 1]],


    ['label' => 'Second Report', 'url' => ['report/', 'id' => 2]]


],

]);

I have two gridViews so I want depends of which link is clicked to show me that gridView on my page, how can i do that ?

Thanks