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

All Your Projects

← Go Back
@if (session('success') || session('error'))
{{ session('success') ?? session('error') }}
@endif
@forelse ($projects as $key => $project)
@csrf

Project #{{ $totalProjects-- }}

{{-- Project Start Date --}}
{{-- Project End Date --}}
{{-- Old File Hidden Path --}}


{{ $project->file ? basename($project->file) : 'No file chosen' }}
@if ($project->file) View File @endif
{{-- Remove Button --}} {{-- Update Button --}}
@empty Nothing Found @endforelse @endsection