Advertisement
Ostap34PHP

Untitled

Jan 16th, 2019
111
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 5 0.74 KB | None | 0 0
  1. <div class="btn-group btn-group-lg w-100 mx-auto">
  2.     @if($previous)
  3.         <a href="{{ route('lessons.show', ['id' => $previous->id]) }}"
  4.            class="btn btn-outline-secondary w-100">&larr; Попереднє</a>
  5.     @endif
  6.  
  7.     @if($lesson->exercises_count > 0)
  8.         <a href="{{ route('exercises.show', ['id' => $lesson->id]) }}"
  9.            class="btn btn-outline-primary w-100">Вправи</a>
  10.     @elseif($next)
  11.         <a href="{{ route('lessons.show', ['id' => $next->id]) }}"
  12.            class="btn w-100 btn-outline-info">Наступне &rarr;</a>
  13.     @else
  14.         <a href="{{ route('course.complete', ['id' => $lesson->course->id ]) }}"
  15.            class="btn w-100 btn-success">ЗАВЕРШИТИ!</a>
  16.     @endif
  17. </div>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement