various changes, fixes to css etc
This commit is contained in:
12
resources/views/layout8/video-partials/video-fav.blade.php
Normal file
12
resources/views/layout8/video-partials/video-fav.blade.php
Normal file
@@ -0,0 +1,12 @@
|
||||
<button title="Toggle Background" class="hidden-xs bg-toggle power" id="togglebg">BG</button>
|
||||
<div class="favbutton">
|
||||
@if(auth()->check())
|
||||
@if(auth()->user()->hasFaved($video->id))
|
||||
<a id="fav" href="{{url($video->id . '/fav')}}">UNFAV</a>
|
||||
@else
|
||||
<a id="fav" href="{{url($video->id . '/fav')}}">FAV</a>
|
||||
@endif
|
||||
@else
|
||||
<a href="{{url($video->id . '/fav')}}">FAVED</a>
|
||||
@endif
|
||||
</div>
|
Reference in New Issue
Block a user