Skip to content

Commit

Permalink
Update spacing
Browse files Browse the repository at this point in the history
Updated spacing in blade to remain consistent with template
  • Loading branch information
kjporter committed Jan 8, 2023
1 parent 8feebc1 commit c552fb7
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions resources/views/dashboard/training/tickets.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -52,11 +52,11 @@
<div class="col-sm-2 text-white">
@isset($exams[$examType])
@if($exams[$examType]['success'] == 1)
<span class="badge bg-success"><strong>{{$examType}}:</strong> {{ $exams[$examType]['date'] }} ({{$exams[$examType]['grade'] }}%)</span>
<span class="badge bg-success"><strong>{{ $examType }}:</strong> {{ $exams[$examType]['date'] }} ({{ $exams[$examType]['grade'] }}%)</span>
@elseif($exams[$examType]['success'] == 0)
<span class="badge bg-danger"><strong>{{$examType}}:</strong> {{ $exams[$examType]['date'] }} ({{$exams[$examType]['grade'] }}%)</span>
<span class="badge bg-danger"><strong>{{ $examType }}:</strong> {{ $exams[$examType]['date'] }} ({{ $exams[$examType]['grade'] }}%)</span>
@else
<span class="badge bg-secondary"><strong>{{$examType}}:</strong> No date</span>
<span class="badge bg-secondary"><strong>{{ $examType }}:</strong> No date</span>
@endif
@endisset
</div>
Expand Down

0 comments on commit c552fb7

Please sign in to comment.