PHP Classes

File: resources/views/frontend/user/channel/index.blade.php

Recommend this page to a friend!
  Classes of Nyi Nyi Lwin   mtube   resources/views/frontend/user/channel/index.blade.php   Download  
File: resources/views/frontend/user/channel/index.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: 850 bytes
 

Contents

Class file image Download
@extends('layouts.account')

@section('dashboard')
    <div class="flex justify-between">
        <h2 class="text-2xl font-bold leading-7 text-gray-900 sm:text-3xl sm:truncate">
            {{ __('Channels') }}
        </h2>
        <span class="rounded-md shadow-sm">
            <button onclick="Livewire.emit('openModal', 'frontend.channel.modal.create-channel')" type="button" class="flex justify-center w-full px-4 py-2 text-sm font-medium text-white bg-indigo-600 border border-transparent rounded-md hover:bg-indigo-500 focus:outline-none focus:border-indigo-700 focus:ring-indigo active:bg-indigo-700 transition duration-150 ease-in-out">
                {{ __('Create New Channel') }}
            </button>
        </span>
    </div>

    <div class="mt-6">
        @livewire('frontend.channel.table.channels-table')
    </div>
@endsection