Categories

@if(!$formMode) @endif
{{-- Success/Error Messages --}} @if (session()->has('message'))
{{ session('message') }}
@endif @if (session()->has('error'))
{{ session('error') }}
@endif {{-- Form or Add More Button --}} @if($formMode)
@include('livewire.admin.partials.channel-fields')
@else @if($viewModel)

{{ $title }}

{{ $slug }}

{{ $display_name }}

{{ $web_url }}

{{ $block_region }}

{{ $is_block == 1 ? 'Yes' : 'No' }}

@if ($image instanceof \Livewire\Features\SupportFileUploads\TemporaryUploadedFile) {{-- Preview new uploaded image --}} Preview @elseif ($image) {{-- Show saved image from storage --}} Image @endif
@endif @endif
{{-- Channels Table --}}
@forelse($channels as $channel) @empty @endforelse
Image Title Slug Display Name Web Url Action
@if($channel->image) @else No Image @endif {{ $channel->title }} {{ $channel->slug }} {{ $channel->display_name }} {{ $channel->web_url }}
No records found
{{ $channels->links() }}