@extends('layouts.app') @section('title', 'Catatan Dashboard - SIAKAD') @section('page-title', 'Catatan Dashboard') @section('content')
Daftar Catatan
Kelola catatan yang tampil di dashboard mahasiswa & dosen
Buat Catatan
@forelse($catatans as $catatan) @empty @endforelse
Urutan Warna Judul Status Aksi
{{ $catatan->title }}

{!! Str::limit(strip_tags($catatan->content), 80) !!}

@if($catatan->is_active) Aktif @else Nonaktif @endif
@csrf
@csrf @method('DELETE')
Belum ada catatan
Buat Catatan Pertama
@if($catatans->hasPages()) @endif
@endsection