Advertisement
Guest User

Untitled

a guest
Feb 24th, 2020
63
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.40 KB | None | 0 0
  1. @foreach($stock->analyses as $analysis)
  2.     @if($analysis->time_frame != null && $analysis->description != null )
  3.     <p class="mb-1" style="font-size:15.5px; color:black; font-weight:900;">
  4.         <i class="mdi mdi-clock text-muted mr-1"></i>{{$analysis->time_frame}} :
  5.         {{$analysis->description}}
  6.         <br/>
  7.     </p>
  8.     @else
  9.     There is no analysis available
  10.     @endif
  11. @endforeach
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement