### Laravel Version 11.45.0 ### PHP Version 8.3 ### Database Driver & Version _No response_ ### Description The exact example in [PR that fixed this three years ago](https://github.com/laravel/framework/pull/42923) is broken again since the single apostrophe was not covered in the tests: ### Steps To Reproduce The mailable blade: ``` {{ "O'Connor" }} ``` The test assertion (which fails) ``` $mail->assertSeeInHtml("O'Connor"); ``` Test output: ``` Failed asserting that 'O'Connor\n ' [ASCII](length: 14) contains "O'Connor" [ASCII](length: 8). ``` Also related to a fairly recently reported bug: https://github.com/laravel/framework/issues/54830