Hi no problem. This isn't my file, but it gives you the same effect. When the html isn't formatted and all written inline, your formatter works fine, but when its like the above, it affects it.
<?php
namespace App\Providers;
use Illuminate\Support\ServiceProvider;
class TestProvider extends ServiceProvider
{
public function test()
{
?>
<script>
const testingHtml = `
<table>
<tbody>
<tr>
<td>Test</td>
<td>Test</td>
</tr>
</tbody>
</table>
`;
</script>
<?php
}
}