我们如何在excel中创建一个表格,如下面的html?

Suppose I want to create a table with php-excel or laravel-excel that should has the following structure:

<table>
   <thead>
      <th>Column A</th>
      <th>Column B</th>
   </thead>
   <tbody>
      <tr>
        <td>value 1</td>
        <td>
          <table>
              <thead>
                 <th>neste column 1</th>
                 <th>nest column 2</th>
              </thead>
              <tbody>
                 <tr>
                    <td>nested value 1</td>
                    <td>nested value 2</td>
                 </tr>
              </tbody> 
          </table>
         </td>
       </tr>  
   </tbody>
</table>

I searched a lot and it seems that excel doesn't support nested table. If it is possible, how we can do that?