@extends('layouts.app') @section('content')

Informasi & Bantuan

@php $perPage = 3; // Jumlah item per halaman $currentPage = request()->get('page', 1); $informasiPaginated = collect($informasi)->chunk($perPage); $currentPageItems = $informasiPaginated->get($currentPage - 1, collect()); @endphp @foreach($currentPageItems as $detail)

{{ $detail['judul'] }}

{{ $detail['deskripsi'] }}

    @foreach($detail['fitur'] as $fitur)
  • {{ $fitur }}
  • @endforeach
@endforeach {{-- Pagination --}}
@endsection