Skip to content

Commit

Permalink
Merge pull request #661 from Lan2Play/dev
Browse files Browse the repository at this point in the history
hotfix broken event home blade
  • Loading branch information
Apfelwurm authored Nov 18, 2023
2 parents 3ddf3aa + 4f656ad commit a87abf9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/resources/views/events/home.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -741,11 +741,11 @@ function copyToClipBoard(inputId) {
@if($event->getSeat($seatingPlan->id, $column, $row)->status == 'ACTIVE')
@if ($seatingPlan->locked)
<button class="btn btn-success btn-sm" disabled>
{{ Helpers::getLatinAlphabetUpperLetterByIndex($row) . $column }} - {{ $event->getSeat($seatingPlan->id, $column, $row))->eventParticipant->user->username }}
{{ Helpers::getLatinAlphabetUpperLetterByIndex($row) . $column }} - {{ $event->getSeat($seatingPlan->id, $column, $row)->eventParticipant->user->username }}
</button>
@else
<button class="btn btn-success btn-sm" disabled>
{{ Helpers::getLatinAlphabetUpperLetterByIndex($row) . $column }} - {{ $event->getSeat($seatingPlan->id, $column, $row))->eventParticipant->user->username }}
{{ Helpers::getLatinAlphabetUpperLetterByIndex($row) . $column }} - {{ $event->getSeat($seatingPlan->id, $column, $row)->eventParticipant->user->username }}
</button>
@endif
@endif
Expand Down

0 comments on commit a87abf9

Please sign in to comment.