Guest User

Untitled

a guest
Oct 22nd, 2017
81
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.50 KB | None | 0 0
  1. @if(Session::get('selected_product'))
  2. @foreach(Session::get('selected_product') as $key => $product )
  3. <?php print_r(Session::get('selected_product')[$key]); ?>
  4. <a href="javascript:void()" data-id="" class="deleterow" title="Delete" alt="Delete"><i class="fi-x small"></i></a>
  5. <fieldset>
  6. @foreach ($product as $value)
  7. <p> {{ $value }}</p>
  8. @endforeach
  9. </fieldset>
  10. @endforeach
  11. @endif
Add Comment
Please, Sign In to add comment