10 lines
297 B
PHP
10 lines
297 B
PHP
@extends('theme::layouts.app')
|
|
|
|
@section('content')
|
|
<div class="max-w-4xl mx-auto px-6 py-12">
|
|
<h1 class="text-3xl font-bold">{{ $channel->name }}</h1>
|
|
@if($channel->meta_description)
|
|
<p class="mt-4 text-gray-600">{{ $channel->meta_description }}</p>
|
|
@endif
|
|
</div>
|
|
@endsection
|