I am a beginner with Laravel and PHP.
I'd like to add two variables together (LBV + RBV
), so that I display a total value:
<td><span class="lbv"></span></td>
<td><span class="rbv"></span></td>
I have tried adding this snippet but no luck yet:
collect([$lbv, $rbv])->sum();