在页面开头的foreach生成的文本选项中插入“List continue”等文本

HTML view:

@foreach($structure['options'] as $option)
    <tr>
       <td>
         - {{ $option }}
       </td>
    </tr>
@endforeach

I use dompdf library and need to put the text "Options continue" on page top in the result PDF document when the list "contains" a page break during generation. Not on every page (not any page numbers using) such as there is also some text before and after foreach. Any ideas in php, dompdf, javascript, css solutions.