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

Add Your Projects

← Go Back
{{-- ✅ Success Message --}} @if (session('success'))
{{ session('success') }}
@endif {{-- 📝 Project Form --}}
@csrf
@php $latestProjects = $projects ?? collect(); @endphp @if ($latestProjects->count() > 0) @foreach ($latestProjects as $index => $project)

Project #{{ $index + 1 }}



{{ $project->file ? basename($project->file) : '' }}
@if ($project->file) View File @endif
@endforeach @else

Project #1

@endif
```
@endsection