I am working on a small Laravel project where I need to pass the variable {{$docno}}
to a blade template. Below is the code snippet in the blade file.
<body>
<div class="container-fluid">
<div class="text-center">
<span><strong>Medical Certify</strong></span>
</div>
<div class="clearfix">
<span class="float-left normal">Ref No..........</span>
<span class="float-right normal" style="margin-top:-5px; position: relative">{{$docno}}</span>
<span class="float-right normal">Doc no ............</span>
</div>
</div>
</body>
Currently, I am facing an issue where I need to position the variable $docno
above the dotted line on the right side. However, the current implementation is not working as expected. Any suggestions or guidance on how to achieve this would be highly appreciated. Thank you!