Skip to content

Commit

Permalink
Fixed Unhiding journals
Browse files Browse the repository at this point in the history
  • Loading branch information
IdrisDose committed Oct 19, 2017
1 parent f0717de commit 5d404bf
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions resources/views/notebooks/index.blade.php
Expand Up @@ -130,15 +130,15 @@
@foreach ($notes as $noteObj)
@if(!($noteObj->isDeleted()) && ($noteObj->isHidden()))
<div class="col-sm-6 col-md-3 notebook">
<a class="" href="{{ route('notebooks.show',$noteObj->id) }}">

<div class="card p-2">
<div class="card-block">


<a class="" href="{{ route('notebooks.show',$noteObj->id) }}">
<h4 class="notebook-title">
{{ $noteObj->name }}
</h4>

</a>
<span class="badge badge-secondary fl-right mt-1">HIDDEN</span>
</div>
<div class="card-block pt-2">
Expand All @@ -159,7 +159,6 @@
</form>
</div>
</div>
</a>
</div>
@endif
@endforeach
Expand Down

0 comments on commit 5d404bf

Please sign in to comment.