todo.blade.php 324 B

12345678
  1. @foreach($notifications as $key=>$notification)
  2. @if($notification['deleted_at'] == null)
  3. <div>
  4. <a href="{{$notification['data']['url']}}"
  5. target="_blank">{{($key+1).':'.$notification['data']['title'].','.$notification['data']['content']}}</a>
  6. </div>
  7. @endif
  8. @endforeach