fixes
This commit is contained in:
17
resources/views/dashboard/comments.blade.php
Normal file
17
resources/views/dashboard/comments.blade.php
Normal file
@@ -0,0 +1,17 @@
|
||||
@extends('layouts.nova')
|
||||
|
||||
@section('content')
|
||||
<div class="container mx-auto py-8">
|
||||
<h1 class="text-2xl font-semibold mb-4">Comments</h1>
|
||||
|
||||
@if(empty($comments))
|
||||
<p class="text-sm text-gray-500">No comments to show.</p>
|
||||
@else
|
||||
<ul class="space-y-2">
|
||||
@foreach($comments as $c)
|
||||
<li>{{ $c }}</li>
|
||||
@endforeach
|
||||
</ul>
|
||||
@endif
|
||||
</div>
|
||||
@endsection
|
||||
Reference in New Issue
Block a user