{{-- Tombol Toggle Sidebar --}}
@php $learningStyles = [ [ 'url' => url('materi/visual/1'), 'icon' => 'fa-eye', 'label' => 'Visual', 'btnClass' => 'btn-primary' ], [ 'url' => url('materi/auditory/1'), 'icon' => 'fa-volume-up', 'label' => 'Auditory', 'btnClass' => 'btn-success' ], [ 'url' => url('materi/kinesthetic/1'), 'icon' => 'fa-running', 'label' => 'Kinesthetic', 'btnClass' => 'btn-warning' ], ]; @endphp @foreach ($learningStyles as $style)
{{ $style['label'] }}
Coba Belajar
@endforeach
@section('content')

Materi Read / Write

Materi #{{ $materi->id_materi }}
{{-- Teks --}} @if ($materi->teks)
Teks:
{!! nl2br(e($materi->teks)) !!}
@else

Tidak ada teks

@endif {{-- Rangkuman --}} @if ($rangkuman)
@endif
{{-- Navigasi --}}
@if ($prev) ⬅ Sebelumnya @else
@endif @if ($next) Selanjutnya ➡ @endif
@csrf
@if (session('success')) @endif @endsection {{-- Tombol bantuan --}}
Pusat Bantuan
@yield('content')