Skip to content

Commit

Permalink
hotfix broken event home blade
Browse files Browse the repository at this point in the history
  • Loading branch information
Apfelwurm committed Nov 18, 2023
1 parent 5e9f2c4 commit 4f656ad
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 4f656ad

Please sign in to comment.