Skip to content

Commit

Permalink
💄 Add emotify render notification
Browse files Browse the repository at this point in the history
  • Loading branch information
mckenziearts committed Dec 12, 2019
1 parent 8cb95e1 commit caafb4b
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions resources/views/messages.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -57,6 +57,20 @@
</div>
@endif

@if (session()->get('notify.model') === 'emotify')
<div class="emoticon-alert emoticon-{{ session()->get('notify.type') }} animated {{ config('notify.animate.in_class') }}" role="alert">
<div class="emoticon-icon"><span></span></div>
<div class="emoticon-text">
<p>{{ session()->get('notify.message') }}</p>
</div>
<div class="emoticon-close">
<button type="button" class="close" data-dismiss="alert" aria-label="Close">
<span aria-hidden="true"><i class="flaticon2-cross"></i></span>
</button>
</div>
</div>
@endif

@endif

{{ session()->forget('notify.message') }}
Expand Down

0 comments on commit caafb4b

Please sign in to comment.