PHP Classes

File: resources/views/livewire/frontend/components/subscribe-button.blade.php

Recommend this page to a friend!
  Classes of Nyi Nyi Lwin   mtube   resources/views/livewire/frontend/components/subscribe-button.blade.php   Download  
File: resources/views/livewire/frontend/components/subscribe-button.blade.php
Role: Auxiliary script
Content type: text/plain
Description: Auxiliary script
Class: mtube
Application to share videos between users
Author: By
Last change:
Date: 2 years ago
Size: 692 bytes
 

Contents

Class file image Download
@if($subscribe)
    <button wire:click="unsubscribeChannel" type="button" class="w-full inline-flex items-center px-4 py-2 border border-transparent rounded-md shadow-sm text-sm font-medium text-white bg-gray-600 hover:bg-gray-700 focus:outline-none focus:ring-2 focus:ring-offset-2 focus:ring-gray-500">
        {{ __('Unsubscribe') }}
    </button>
@else
    <button wire:click="subscribeChannel" type="button" class="w-full inline-flex items-center px-4 py-2 border border-transparent rounded-md shadow-sm text-sm font-medium text-white bg-red-600 hover:bg-red-700 focus:outline-none focus:ring-2 focus:ring-offset-2 focus:ring-red-500">
        {{ __('Subscribe') }}
    </button>
@endif