Skip to content

Commit 27b6f14

Browse files
committed
Merge branch 'extension-pr/pets' of https://github.com/perappu/lorekeeper into extension-pr/pets
2 parents e0230ba + c8a4aac commit 27b6f14

2 files changed

Lines changed: 6 additions & 6 deletions

File tree

resources/views/home/_pet_form.blade.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -79,9 +79,9 @@
7979
<li class="list-group-item">
8080
<a class="card-title h5 collapse-title" data-toggle="collapse" href="#userVariantForm">Change Pet Variant</a>
8181
{!! Form::open(['url' => 'pets/variant/' . $pet->id, 'id' => 'userVariantForm', 'class' => 'collapse']) !!}
82-
@if(isset($pet->drops) && $pet->drops->drops_available > 0)
82+
@if (isset($pet->drops) && $pet->drops->drops_available > 0)
8383
<div class="alert alert-danger">
84-
This pet currently has available drops. Changing its variant may alter or remove their currently available drops.
84+
This pet currently has available drops. Changing its variant may alter or remove their currently available drops.
8585
<br>
8686
<b>Please collect your drops before changing this pet's variant.</b>
8787
</div>
@@ -114,7 +114,7 @@
114114
<a class="card-title h5 collapse-title" data-toggle="collapse" href="#variantForm">[ADMIN] Change Pet Variant</a>
115115
{!! Form::open(['url' => 'pets/variant/' . $pet->id, 'id' => 'variantForm', 'class' => 'collapse']) !!}
116116
{!! Form::hidden('is_staff', 1) !!}
117-
@if(isset($pet->drops) && $pet->drops->drops_available > 0)
117+
@if (isset($pet->drops) && $pet->drops->drops_available > 0)
118118
<div class="alert alert-danger">
119119
This pet currently has available drops. Changing its variant may alter or remove their currently available drops.
120120
<br>

resources/views/home/_pet_stack.blade.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -110,9 +110,9 @@
110110
<li class="list-group-item">
111111
<a class="card-title h5 collapse-title" data-toggle="collapse" href="#userVariantForm">Change Pet Variant</a>
112112
{!! Form::open(['url' => 'pets/variant/' . $stack->id, 'id' => 'userVariantForm', 'class' => 'collapse']) !!}
113-
@if(isset($stack->drops) && $stack->drops->drops_available > 0)
113+
@if (isset($stack->drops) && $stack->drops->drops_available > 0)
114114
<div class="alert alert-danger">
115-
This pet currently has available drops. Changing its variant may alter or remove their currently available drops.
115+
This pet currently has available drops. Changing its variant may alter or remove their currently available drops.
116116
<br>
117117
<b>Please collect your drops before changing this pet's variant.</b>
118118
</div>
@@ -145,7 +145,7 @@
145145
<a class="card-title h5 collapse-title" data-toggle="collapse" href="#variantForm">[ADMIN] Change Pet Variant</a>
146146
{!! Form::open(['url' => 'pets/variant/' . $stack->id, 'id' => 'variantForm', 'class' => 'collapse']) !!}
147147
{!! Form::hidden('is_staff', 1) !!}
148-
@if(isset($stack->drops) && $stack->drops->drops_available > 0)
148+
@if (isset($stack->drops) && $stack->drops->drops_available > 0)
149149
<div class="alert alert-danger">
150150
This pet currently has available drops. Changing its variant may alter or remove their currently available drops.
151151
<br>

0 commit comments

Comments
 (0)