@extends('layouts.dashboard') @section('title', 'R&D Management') @section('content')
entries

R&D List

@foreach ($allRnds as $rnd) @endforeach
S/N Title Description Created By Actions
{{ $loop->iteration }} {{ $rnd->title }} {{ Str::limit($rnd->description, 50) }} {{ $rnd->createdBy->name ?? 'N/A' }}
{{ $allRnds->links() }}
@endsection