@extends('layouts.master') @section('title', 'Project Listing Report') @section('content')
Back to Reports Dashboard
Project Listing Report
@if(session('success'))
{{ session('success') }}
@endif
@csrf
@forelse($projects as $project) @empty @endforelse
Project Code Project Name Description
{{ $project->code }} {{ $project->name }} {{ $project->description ?? 'N/A' }}
No projects found.

Copyright © Melsoft (Private) Limited

@endsection @section('styles') @endsection