Files
SkinbaseNova/resources/views/dashboard/followers.blade.php
2026-02-21 19:26:48 +01:00

18 lines
472 B
PHP

@extends('layouts.nova')
@section('content')
<div class="container mx-auto py-8">
<h1 class="text-2xl font-semibold mb-4">Followers</h1>
@if(empty($followers))
<p class="text-sm text-gray-500">You have no followers yet.</p>
@else
<ul class="space-y-2">
@foreach($followers as $f)
<li>{{ $f }}</li>
@endforeach
</ul>
@endif
</div>
@endsection