@extends('layouts.app') @section('title', 'Student Dashboard - FYP') @section('content')
Welcome, {{ Auth::user()->fullname }}
| Title | Description | Attachments | Date |
|---|---|---|---|
| {{ $a->title }} | {{ Str::limit($a->description, 100) }} |
@foreach($a->attachments as $att)
📄 {{ $att->file_name }}
@endforeach |
{{ $a->created_at->format('d M Y') }} |