View.php

<!-- <lia-route pattern="/note-$id/" autoform> -->
<!-- <lia-route pattern="/" onmatch="< ?php $id="*";? >" > -->
<!-- <lia-route pattern="/note-$id/" pattern-form="/note-$id/edit/" pattern-submit="/note-$id/submit/" /> -->
<!-- <lia-route pattern="/note-$id/edit/" type='form' /> -->
<!-- <lia-route pattern="/note-$id/submit/" type='submit' /> -->
<div>
    This is not repeatable
</div>
<div rb-table="note" rb-find="id:<?php echo $id?>"  rb-loop>
    <h6>table: <?=$table?></h6>
    <div style="background:#EEE">
        <h1>Note: <?=$note->name?></h1>
        <p rb-prop="body" rb-format="markdown"></p>
        <?php
            echo "a thing";
        ?>
        <?php echo $note->body?>
    </div>
    <hr>
</div>

<hr>
<hr>
<div rb-table="note" rb-find="id:*"  rb-loop>
    <h6>table: <?=$table?></h6>
    <div style="background:#EEE">
        <h1>Note: <?=$note->name?></h1>
        <p rb-prop="body" rb-format="markdown"></p>
        <?php
            echo "a thing";
        ?>
        <?php echo $note->body?>
    </div>
    <hr>
</div>