'Why the tab is not working in blade file in laravel?

I am new to laravel.

I need to fetch the data from the table and pass it to the blade file.

The problem is, the tab is not working for the particular href.

<div class="card">
    @foreach ($sample as $details)
       <div class = "card-header">
           <ul class="nav">
               <li class="nav-item">
                  <a class="nav-item" href="#{{ $details['id']}}_pane1"  data-toggle="tab"> Data1</a>
                </li>
                 <li class="nav-item">
                    <a class="nav-item" href="#{{ $details['id'] }}_pane2" data-toggle="tab">Data2</a>
                 </li>
              </ul>
            </div>
         <div class ="tab-content">
            <center class="tab-pane" id="{{ $details['id'] }}_pane1" role="tabpanel"> Content1</center>
            <center class="tab-pane" id="{{ $details['id'] }}_pane2" role="tabpanel"> Content2</center>
         </div>
   @endforeach
 </div>

The tab is not working..

This is how we pass the table attribute to the href?

Could someone please help?

Many thanks.



Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source