la_bloger/resources/views/themes/default/home.blade.php
2026-04-22 16:21:35 +02:00

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